Path parameters
-
id
integer Required The ambassador id
Body
-
status_role
string Required Values are
status-administrator
,status-ambassador
,status-employee
,status-seller
,status-shop-manager
,status-manager
, orstatus-expert
. -
manager_role
string(nullable) Required Values are
administrator
,editor
, orviewer
.
PATCH
/manager/ambassadors/{id}/roles
curl \
--request PATCH 'https://domain.tld/api/v2/manager/ambassadors/{id}/roles' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"status_role":"status-administrator","manager_role":"administrator"}'
Request examples
{
"status_role": "status-administrator",
"manager_role": "administrator"
}
Response examples (200)
{
"message": "Roles synchronized successfully"
}
Response examples (401)
{
"message": "Unauthorized."
}
Response examples (422)
{
"message": "field is required! (and 3 more error)",
"errors": {
"field": [
"Error message details here"
],
"additionalProperty1": [
"Error message details here"
],
"additionalProperty2": [
"Error message details here"
]
}
}