Launch Week 02 wrapped — explore all five launches

List Organization Members

GEThttps://api.confident-ai.com/v1/organization/members

Lists the members of your organization, along with each member's organization role.

GET/v1/organization/members
curl -X GET "https://api.confident-ai.com/v1/organization/members" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "members": [
      {
        "id": "user-uuid-1",
        "email": "alice@example.com",
        "name": "Alice",
        "image": null,
        "organizationRole": {
          "id": "role-uuid-1",
          "name": "Admin"
        }
      },
      {
        "id": "user-uuid-2",
        "email": "bob@example.com",
        "name": "Bob",
        "image": null,
        "organizationRole": {
          "id": "role-uuid-2",
          "name": "Member"
        }
      }
    ],
    "total": 2
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Query parameters

  • pageintegerdefault: 1

    The page number to return. Defaults to 1.

  • pageSizeintegerdefault: 25

    The maximum number of members per page (max 100). Defaults to 25.

Response

  • successboolean

    Indicates if the request was successful

  • dataobject

    Show 2 propertiesHide 2 properties
    • memberslist of objects

      List of members in the organization

      Show 5 propertiesHide 5 properties
      • idstring

        Unique identifier for the member

      • emailstring

        The member's email address

      • namestring

        The member's display name

      • imagestring

        URL of the member's avatar image

      • organizationRoleobject

        The member's organization role, or null if they have no role

        Show 2 propertiesHide 2 properties
        • idstring

          Unique identifier

        • namestring

          Name

    • totalinteger

      Total number of members in the organization

Built byConfident AI