Detach an ambassador from a brand tag

DELETE /manager/brand-tags/{id}/ambassador/{ambassador}

Path parameters

  • id integer Required

    The brand tag id

  • ambassador integer Required

    The ambassador id

Responses

  • 200 application/json

    success

    Hide response attribute Show response attribute object
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
  • Forbidden - You don't have permission to access this route

  • Not found - The brand tag does not exist

DELETE /manager/brand-tags/{id}/ambassador/{ambassador}
curl \
 -X DELETE https://domain.tld/api/v2/manager/brand-tags/{id}/ambassador/{ambassador} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "message": "Ambassador successfully detached"
}
Response examples (401)
{
  "message": "Unauthorized."
}