Launch Week 02 wrapped — explore all five launches

Remove Organization Member

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

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

DELETE/v1/organization/members/{userId}
curl -X DELETE "https://api.confident-ai.com/v1/organization/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

  • 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