Skip to main content

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
workspaceIdentifierstringrequired
Workspace UUID or slug.
userIdentifierstringrequired
User UUID or email.
Error Responses
403
ENABLE_EXTERNAL_API is not true, license missing, or Authorization header invalid.
404
Workspace not found, user not found, or user is not a member of the specified workspace.
451
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"
  }
]
}