Body
-
name
string | null -
email
string | null -
phoneNumber
string | null -
status
integer(int32) Values are
1
,2
, or3
. -
profitRate
number(double)
Values are 1
, 2
, or 3
.
Values are 1
, 2
, or 3
.
Values are 1
, 2
, or 3
.
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"
{
"name": "string",
"email": "string",
"phoneNumber": "string",
"status": 1,
"profitRate": 42.0
}
{
"name": "string",
"email": "string",
"phoneNumber": "string",
"status": 1,
"profitRate": 42.0
}
{
"name": "string",
"email": "string",
"phoneNumber": "string",
"status": 1,
"profitRate": 42.0
}