Launch Week 02 wrapped — explore all five launches

Remove Project Member

DELETEhttps://api.confident-ai.com/v1/projects/{projectId}/members/{userId}

Removes a member from the project. The member is detached from the project and their pending project invitations are cleared. The project Owner cannot be removed.

DELETE/v1/projects/{projectId}/members/{userId}
curl -X DELETE "https://api.confident-ai.com/v1/projects/{projectId}/members/{userId}" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "id": "user-uuid-2",
    "removed": true
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Path parameters

  • projectIdstringRequired

    The unique identifier of the project.

  • userIdstringRequired

    The unique identifier of the member.

Response

  • successboolean

    Indicates if the request was successful

  • dataobject

    Show 2 propertiesHide 2 properties
    • idstring

      ID of the removed member

    • removedboolean

      Always true when the member was removed

Built byConfident AI