List people

Returns a list of people associated with a given account.

You can use the include parameter to retrieve additional details about people.

SecurityCommonAuth
Request
query Parameters
accountId
required
string

The ID of the account to work with.

Example: accountId=F50091
limit
integer [ 1 .. 100000 ]
Default: 100

The maximum number of results to return.

Example: limit=100
offset
integer
Default: 0

The number of items to skip before returning results.

Example: offset=100
search
string <= 100 characters

The term to search the records for.

Example: search=Cesar+Treutel
string or Array of strings

Filter people by their status on the account. Use commas to pass multiple values. Has to be URL encoded.

Enum: "active" "deactivated" "created" "invited" "inviteExpired"
Example: status=active,deactivated
string or Array of strings

Filter people by team.

string or Array of strings

Filter people by address.

string or Array of strings

Filter people by role.

string or Array of strings

Filter people by role name. Use commas to pass multiple values. Has to be URL encoded.

Example: roleNames=owner,admin
string or Array of strings

Filter people by personId. Use commas to pass multiple values. Has to be URL encoded.

string or Array of strings

The list of IDs of the Budgets to work with

withoutIndividualBudget
string

Filter people without an individual budget.

Enum: "true" "false"
string or Array of strings

Optional embeds to include when returning people.

Enum: "persona.addresses" "persona.createdBy" "persona.teams" "persona.primaryOwnerOf" "persona.roles" "address"
Example: include=persona.addresses
canBeIssuedIndividualCard
string

If true, the endpoint returns only people who can be issued an individual card.

Enum: "true" "false"
Responses
200

OK

get/people
Request samples
Response samples
application/json
{
  • "limit": 200,
  • "offset": 100,
  • "count": 67,
  • "rows": [
    ]
}