Get user by ID

Retrieves detailed information about a user including their profile and organization memberships with roles.

Path Parameters
  • uid
    Type: string
    required

    The unique identifier of the user

Responses
  • application/json
Request Example for get/v1/users/{uid}
curl 'https://api.signstack.ai/v1/users/{uid}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "uid": "string",
  "firstName": "string",
  "lastName": "string",
  "email": "hello@example.com",
  "isEmailVerified": true,
  "organizations": [
    {
      "organizationId": "string",
      "roles": [
        "SUPER_ADMIN"
      ]
    }
  ]
}