DELETE /v1/auth/accounts/revoke

Revoke account for specified entity

application/json

Body

Account revoke request for entity (staff or family)

  • entityId string Required

    Entity id

Responses

  • 403 application/json

    Not authorized

    Hide response attributes Show response attributes object

    Error schema

    • statusCode number Required

      Status Code

    • messages array[string] Required

      List of error messages

    • exception object

      Exception

  • 204

    Successful operation with no content

DELETE /v1/auth/accounts/revoke
curl \
 --request DELETE 'https://api.classmanager.io/v1/auth/accounts/revoke' \
 --header "Content-Type: application/json" \
 --data '{"entityId":"stf_xxxxxxxx"}'
Request examples
{
  "entityId": "stf_xxxxxxxx"
}
Response examples (403)
{
  "statusCode": 42.0,
  "messages": [
    "string"
  ],
  "exception": {}
}