POST /api/tour-guides/create

POST /api/tour-guides/create

Body

Responses

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