PUT /api/tickets/{id}

PUT /api/tickets/{id}

Path parameters

  • id integer(int32) Required

Body

curl \
 --request PUT 'https://org-bay.runasp.net/api/tickets/{id}' \
 --header "Content-Type: application/json" \
 --data '{"title":"string","price":42.0,"tax":42.0,"currency":0,"days":[42],"categoryId":42}'
curl \
 --request PUT 'https://org-bay.runasp.net/api/tickets/{id}' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'https://org-bay.runasp.net/api/tickets/{id}' \
 --header "Content-Type: application/*+json"
Request examples
{
  "title": "string",
  "price": 42.0,
  "tax": 42.0,
  "currency": 0,
  "days": [
    42
  ],
  "categoryId": 42
}