Skip to main content

Get user by id

GET 

/api/v2/users/:user_id

Retrieve a user by their id, or 'me' for the current user

Request

Path Parameters

    user_id stringrequired

Responses

Schema

    id uuidrequired

    Unique ID of the user

    name stringnullable

    Name of the user

    email stringrequired

    Email of the user

    role stringrequired

    Possible values: [admin, group_manager, business_manager]

    Role of the user

    email_confirmed booleanrequired

    Whether the user has confirmed their email

    language stringnullable

    Language of the user

    permissions

    object

    required

    home string[]

    Possible values: [read, write]

    dashboard string[]

    Possible values: [read, write]

    website string[]

    Possible values: [read, write]

    reservations string[]

    Possible values: [read, write]

    crm string[]

    Possible values: [read, write]

    reviews string[]

    Possible values: [read, write]

    suppliers string[]

    Possible values: [read, write]

    product_catalog string[]

    Possible values: [read, write]

    basic_information string[]

    Possible values: [read, write]

    opening_hours string[]

    Possible values: [read, write]

    activity string[]

    Possible values: [read, write]

    photos string[]

    Possible values: [read, write]

    posts string[]

    Possible values: [read, write]

    presence string[]

    Possible values: [read, write]

    business_creation string[]

    Possible values: [read, write]

Loading...