Get User Metadata
BETA
This endpoint is in beta and may change in future releases.
GET/workspace/{workspaceIdentifier}/user/{userIdentifier}
Returns metadata for a specific user within a workspace.
Path Parameters
Workspace UUID or slug.
User UUID or email.
Error Responses
ENABLE_EXTERNAL_API is not true, license missing, or Authorization header invalid.
Workspace not found, user not found, or user is not a member of the specified workspace.
EXTERNAL_API license not active on the instance.
Request
curl -X GET "https://{your-domain}/api/ext/workspace/{workspaceIdentifier}/user/{userIdentifier}" -H "Authorization: Basic <access_token>"Response — 200
{
"id": "a1b2c3d4-...",
"name": "John Doe",
"email": "[email protected]",
"status": "active",
"userDetails": [
{
"key": "department",
"value": "Platform"
}
]
}