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