curl --request GET \
--url https://api.avidoai.com/v0/organization-members \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "ada@example.com",
"firstName": "Ada",
"lastName": "Lovelace",
"profilePictureUrl": "https://cdn.example.com/avatars/ada.png",
"banned": false
}
]
}Retrieves the list of users who belong to the authenticated organization. Banned members are filtered out of the response.
curl --request GET \
--url https://api.avidoai.com/v0/organization-members \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>'{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "ada@example.com",
"firstName": "Ada",
"lastName": "Lovelace",
"profilePictureUrl": "https://cdn.example.com/avatars/ada.png",
"banned": false
}
]
}Your unique Avido API key
Your unique Avido Application ID
Successfully retrieved the list of non-banned organization members
Successful response containing the list of non-banned members of the authenticated organization.
Show child attributes