PUT /api/tour-guides/{id}

PUT /api/tour-guides/{id}

Path parameters

  • id integer(int32) Required

Body

PUT /api/tour-guides/{id}
curl \
 --request PUT 'https://org-bay.runasp.net/api/tour-guides/{id}' \
 --header "Content-Type: application/json" \
 --data '{"name":"string","phoneNumber":"string","email":"string","profitRate":42.0,"status":1}'
curl \
 --request PUT 'https://org-bay.runasp.net/api/tour-guides/{id}' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'https://org-bay.runasp.net/api/tour-guides/{id}' \
 --header "Content-Type: application/*+json"
Request examples
{
  "name": "string",
  "phoneNumber": "string",
  "email": "string",
  "profitRate": 42.0,
  "status": 1
}