Skip to main content

members.remove

Remove somebody from an organization

Request
DELETE/api/v1/organizations/{organizationSlug}/members/{memberId}
Scope required
organization_members:write
Effect
Deletes something. Confirm with a person before calling it.
Acts on
Acts on an organization, and names it in the path.
MCP tool
members_remove
Environment
Live and sandbox alike.
Request body
JSON.

What it does

Ends a membership. The person keeps every board, application and note of their own — what they lose is the organization, and every board they had shared with it stops being shared immediately. Owners and admins may call it, and only an owner may remove another owner. To leave an organization yourself use `members.leave`, which checks that somebody is left to own it. Answers 204 with no body.

Parameters

Parameters this endpoint accepts, where each one goes, and whether it is required
NameSent inRequirementAccepts
organizationSlugpathRequiredstring
memberIdpathRequiredstring

Response

Answers 204 with no body.

Examples

Remove a graduated applicant

Remove a graduated applicant — request
curl -s -X DELETE https://www.jobapplicationtracking.com/api/v1/organizations/northside-career-center/members/mem_41 \
  -H "Authorization: Bearer $JAT_KEY"
Remove a graduated applicant — response
null

Related operations