Delete an Account Membership
DELETE/v2/accounts/:accountID/account-memberships/:membershipID
Delete a membership from an account
Request
Path Parameters
accountID stringrequired
The unique identifier of the account that the account member is associated with.
membershipID stringrequired
The unique identifier of the account membership to update the details of the account member.
Responses
- 204
- 404
No Content
Not Found
- application/json
- Schema
- Example (from schema)
- not-found-error
Schema
- Array [
- ]
errors Error[]required
status string
The HTTP response code of the error.
title string
A brief summary of the error.
detail string
Optional additional detail about the error.
{
"errors": [
{
"status": "string",
"title": "string",
"detail": "string"
}
]
}
{
"errors": [
{
"status": "404",
"title": "Not Found",
"detail": "account not found"
}
]
}
Loading...