v1

latestOpenAPI 3.0.02026-08-0645003.8 MB
Accounts

Detach User

Detach a user from an account (only accounts under the creator's own organization are allowed). Creator's organization ID is taken from the personal token attached to the API call.

delete/setup/account/{accountId}/user

Path parameters

accountIdstring required

The ID of the account you want to update.

Request body

userEmailstring required

Email of the user that is going to be deleted

Example request

{
  "userEmail": "test@gmail.com"
}

Response

Detach User Response

Example response

{
  "request": {
    "id": "46642c7d-bc29-417d-8ce4-79626f00c63c",
    "url": "/setup/account/act-12345678/user/",
    "method": "DELETE",
    "timestamp": "2018-11-19T13:49:11.911Z"
  },
  "response": {
    "status": {
      "code": 200,
      "message": "OK"
    }
  }
}