DELETE /v1/addresses/

Delete addresses for entity

application/json

Body

Delete addresses request

  • addressEntityId 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

  • 404 application/json

    Not found

    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/addresses/
curl \
 --request DELETE 'https://api-dev.classmanager.io/v1/addresses/' \
 --header "Content-Type: application/json" \
 --data '{"entityId":"stf_xxxxxxxx"}'
Request example
{
  "entityId": "stf_xxxxxxxx"
}
Response examples (403)
{
  "statusCode": 42.0,
  "messages": [
    "string"
  ],
  "exception": {}
}
Response examples (404)
{
  "statusCode": 42.0,
  "messages": [
    "string"
  ],
  "exception": {}
}