Remove Member
DELETEhttps://api.confident-ai.com/v2/projects/{projectId}/members/{userId}
Revokes a member's access to this project only: they are disconnected from it, their project role is deleted, and any invitation still outstanding for their email address on this project is cleared. They keep their organization membership and their access to every other project, so this does not free up a seat. The project Owner cannot be removed, so transfer ownership first. Removal is not reversible through this endpoint — invite the same address to the project again to bring them back, which returns them with the default role rather than the one they had.
curl -X DELETE "https://api.confident-ai.com/v2/projects/{projectId}/members/{userId}" \
-H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"{
"success": true,
"data": {
"id": "<USER-ID>"
},
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe organization API key for your Confident AI organization.
Path parameters
projectIdstringRequiredThe id of the project, which must belong to your organization.
userIdstringRequiredThe id of the user whose membership of this project to change.
Response
Remove Member succeeded.
successbooleanIndicates if the request was successful.
dataobjectConfirmation that the user is no longer a member. Removing an organization member also removes them from every project in it; removing a project member leaves their organization membership untouched.
Show 1 propertyHide 1 property
idstringThe id of the user who was removed.
deprecatedbooleanIndicates if this endpoint is deprecated.