curl --request DELETE \
--url https://api.example.com/api/projects/{projectId}/members/{memberId} \
--header 'Authorization: Bearer <token>'{
"status": "ok"
}Remove a member from a project. The current user cannot remove themselves using this endpoint.
curl --request DELETE \
--url https://api.example.com/api/projects/{projectId}/members/{memberId} \
--header 'Authorization: Bearer <token>'{
"status": "ok"
}Personal access token is obtained through your profile
Unique identifier of the member to remove
Unique identifier of the project
Confirmation that the member has been removed
Confirmation that the member has been removed
Operation status
ok Was this page helpful?