Skip to main content
GET
/
end-users
/
{endUserId}
Get end user details
curl --request GET \
  --url https://api.superglue.ai/v1/end-users/{endUserId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "externalId": "user-123",
    "email": "user@example.com",
    "name": "John Doe",
    "metadata": {},
    "allowedSystems": [
      "*"
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "credentials": [
      {
        "systemId": "<string>",
        "systemName": "<string>",
        "hasCredentials": true
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.superglue.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Static API key authentication using Bearer token scheme. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY

Alternatively, you can use the token query parameter to authenticate.

API keys can be generated in your superglue dashboard.

Path Parameters

endUserId
string<uuid>
required

Response

End user details

data
object

An end user who can connect their own credentials to multi-tenancy systems.