Skip to main content
DELETE
/
organizations
/
members
Remove organization member
curl --request DELETE \
  --url https://nimbussuite.com/api/v1/organizations/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "orgId": "<string>",
  "userId": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
orgId
string
required
userId
string
required

Response

Member removed successfully

message
string