Subaccounts

List operators

Returns list of operators for currently authorized user's merchant.

get/v0.1/me/accounts

Query parameters

querystring

Search query used to filter users that match given query term.

Current implementation allow querying only over the email address. All operators whos email address contains the query string are returned.

include_primaryboolean

If true the list of operators will include also the primary user.

Response

List of operators.

idinteger required
usernamestring required
nicknamestring nullable
disabledboolean required
created_atstring date-time required

The timestamp of when the operator was created.

updated_atstring date-time required

The timestamp of when the operator was last updated.

account_type'operator' | 'normal' required

Example response

[
  {
    "username": "operator1@mydomain.com",
    "nickname": "Operator 1"
  }
]

Changes