Back to Organization & People Management
Get Member
Retrieves details of a specific member by ID
Request Details
path Parameters
Field | Type | Required | Description |
---|---|---|---|
id | string | Yes | The unique identifier of the org's member |
Sample Request & Response
GET
/v1/members/{id}Sample Request
Headers:
{
"Authorization": "Bearer <YOUR_API_KEY>"
}
Path Parameters:
{
"id": "string (required) - The unique identifier of the org's member"
}
Sample Response (200)
{
"id": "example_string",
"createdAt": "2025-07-26T12:00:00Z",
"updatedAt": "2025-07-26T12:00:00Z",
"firstName": "example_string",
"lastName": "example_string",
"email": "example_string",
"organizationId": "example_string",
"locations": [
{
"locationId": "example_string",
"role": [
"admin",
"editor",
"viewer"
]
}
],
"isPrimary": true,
"isActive": true,
"settings": {
"profilePictureUrl": "example_string"
}
}