Users

In Cerby, users are individuals who have access to a workspace through a user account and can create, protect, and manage items. A user object contains information about the name, email, workspace role, and other relevant attributes of a user.

A user object is created in Cerby when you perform any of the following actions:

  • Provision a user in Cerby from your corporate identity provider (IdP), such as Okta or Entra ID (formerly Azure AD).

  • Invite a user to join a local user workspacearrow-up-right with an identity managed by Cerby.

  • Invite a user to join a workspace as a guest userarrow-up-right with an identity managed by Cerby.

With the Cerby API, you can retrieve all users or specific users by providing their ID.

Important: You can only retrieve users if you have the workspace Admin, Super Admin, or Owner role. Your permissions are determined by your API or bearer token based on Cerby’s RBAC system.

List users

get

With a GET request to the /users endpoint, you can retrieve the list of all users in your workspace.

Important: The API scope required to use this endpoint is: User data.

Query parameters
page[number]integer · min: 1Optional

The page number to retrieve in the paginated result set.

Default: 1
page[size]integer · min: 1 · max: 100Optional

The number of items to return per page.

Default: 25
filterstringOptional

The user's full name or email to filter the response.

mfaStatusbooleanOptional

When set to true, includes MFA status details for each user. If omitted or false, the mfaStatus attribute is null.

Responses
chevron-right
200

OK

application/json
get
/users

Retrive user by ID

get

With a GET request to the /users/{id} endpoint, you can retrieve the information of a user by providing their ID.

Important: The API scope required to use this endpoint is: User data.

Path parameters
idstring · uuidOptional

The unique identifier of the user.

Query parameters
mfaStatusbooleanOptional

When set to true, includes MFA status details for the user. If omitted or false, the mfaStatus attribute is null.

Responses
chevron-right
200

OK

application/json
get
/users/{id}

Last updated