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. The email field is only returned to callers with owner or admin role — lower-privileged members receive the same payload without email to prevent directory enumeration.
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
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.avidoai.com/llms.txt
Use this file to discover all available pages before exploring further.
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