members
Get member
Retrieves the full details of a specific member by their unique identifier (UUID). Returns the member's profile information including name, username, email address, and workspace role.
Without the members:pii:read OAuth scope, PII fields (name, username, email) are returned as [redacted].
get/members/{id}
Path parameters
idstring uuid required
Example:123e4567-e89b-12d3-a456-426614174000
Member identifier.
Response
Member details
Example response
{
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "member",
"fields": {
"name": "John Doe",
"username": "johndoe",
"email": "email@example.com",
"role": "maker",
"teams": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "team",
"links": {
"self": "https://api.productboard.com/v2/teams/123e4567-e89b-12d3-a456-426614174000",
"members": "https://api.productboard.com/v2/teams/123e4567-e89b-12d3-a456-426614174000/members",
"html": "https://example.productboard.com/settings/teams/12"
}
}
]
},
"links": {
"self": "https://api.productboard.com/v2/members/123e4567-e89b-12d3-a456-426614174000",
"html": "https://example.productboard.com/settings/members/42"
}
}
}