List Organization Members
GEThttps://api.confident-ai.com/v1/organization/members
Lists the members of your organization, along with each member's organization role.
curl -X GET "https://api.confident-ai.com/v1/organization/members" \
-H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"{
"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_KEYstringRequiredThe organization API key for your Confident AI organization.
Query parameters
pageintegerdefault: 1The page number to return. Defaults to 1.
pageSizeintegerdefault: 25The maximum number of members per page (max 100). Defaults to 25.
Response
successbooleanIndicates if the request was successful
dataobjectShow 2 propertiesHide 2 properties
memberslist of objectsList of members in the organization
Show 5 propertiesHide 5 properties
idstringUnique identifier for the member
emailstringThe member's email address
namestringThe member's display name
imagestringURL of the member's avatar image
organizationRoleobjectThe member's organization role, or
nullif they have no roleShow 2 propertiesHide 2 properties
idstringUnique identifier
namestringName
totalintegerTotal number of members in the organization