Skip to main content

List public users

Returns the users from all the organizations in a Frontier instance. It can be filtered by keyword, organization, group and state. Additionally you can include page number and page size for pagination.

Query Parameters
    page_size int32

    The maximum number of users to return per page. The default is 50.

    page_num int32

    The page number to return. The default is 1.

    keyword string

    The keyword to search for in name or email.

    org_id string

    The organization ID to filter users by.

    group_id string

    The group id to filter by.

    state string

    The state to filter by. It can be enabled or disabled.

Responses

A successful response.


Schema
    count int32
    users object[]
  • Array [
  • id string
    name can either be empty or must start with a character

    Unique name of the user.

    title string

    Name of the user.

    email string
    metadata object
    created_at date-time

    The time the user was created.

    updated_at date-time

    The time the user was last updated.

    state string

    The state of the user (enabled or disabled).

    avatar string

    The base64 encoded image string of the user avatar. Should be less than 2MB.

  • ]
Loading...