cURL
curl --request GET \ --url https://charts.basedash.com/api/public/organizations/{orgId}/members/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "createdAt": "2023-11-07T05:31:56Z", "role": "MEMBER", "userId": "<string>", "organizationId": "<string>", "user": { "id": "<string>", "fullName": "<string>", "avatarUrl": "<string>", "email": "<string>", "isEmailVerified": true, "createdAt": "2023-11-07T05:31:56Z", "firstName": "<string>", "title": "<string>" } } }
Retrieves a member by ID, including their user information. Requires admin access to the organization.
API key authentication using Bearer token format: Bearer <basedash_api_key>
Bearer <basedash_api_key>
Organization ID
Member ID
Member retrieved successfully
Show child attributes
Was this page helpful?