BazaarLinkBazaarLink
Sign in
DocsAPI ReferenceSDK ReferenceAgentic UsageAI Skills
Organizations

Remove a member

Removes a member from the organization (only the org membership — the person's underlying BazaarLink account is not deleted). Only an org_admin of that organization may call this. There is one safety guard: removing a member who is the organization's only remaining org_admin is blocked with 400, so the organization can never end up with no admin.

DELETE/api/v1/orgs/:orgId/members/:memberId

Authorizations

Authorizationrequired
string · header

API key as bearer token in the Authorization header.

Path parameters

orgIdrequired
string

The organization ID, from a GET /orgs response.

memberIdrequired
string

The member ID, from a list-members or add-a-member response.

DELETE /api/v1/orgs/:orgId/members/:memberId
curl -X DELETE https://bazaarlink.ai/api/v1/orgs/org_abc123/members/orgmem_abc123 \
  -H "Authorization: Bearer $BAZAARLINK_API_KEY"
Response examples

Removed successfully, no response body.

(no body)
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
Remove a member — BazaarLink API