Delete Region

DELETE /api/accounts/{account_id}/regions/{id}

Allows you to delete a region for an account.

Path parameters

  • account_id string Required

    The ID of the account from which to delete the region

  • id string Required

    the ID of the region to delete

Responses

  • No content

  • Unauthorized

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

  • Not found

    Hide response attribute Show response attribute object
    • error string

      Human readable version of the error status code

DELETE /api/accounts/{account_id}/regions/{id}
curl \
 -X DELETE http://localhost:4000/api/accounts/{account_id}/regions/{id}
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (401)
{
  "error": "Error Reason"
}
Response examples (404)
{
  "error": "Error Reason"
}
Response examples (404)
{
  "error": "Error Reason"
}