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
| Name | Sent in | Requirement | Accepts |
|---|---|---|---|
| organizationSlug | path | Required | string |
| memberId | path | Required | string |
Response
Answers 204 with no body.
Examples
Remove a graduated applicant
curl -s -X DELETE https://www.jobapplicationtracking.com/api/v1/organizations/northside-career-center/members/mem_41 \
-H "Authorization: Bearer $JAT_KEY"null