Skip to main content
GET
/
api
/
account-member
Test request
curl --request GET \
  --url https://api.hilos.io/api/account-member \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "page": 123,
  "page_size": 123
}'
[
  {
    "first_name": "string",
    "last_name": "string",
    "email": "user@example.com",
    "id": 0,
    "teams": [
      {
        "id": 0,
        "name": "string",
        "assignment_strategy": "string"
      }
    ],
    "account": 0,
    "groups": [
      {
        "id": 0,
        "name": "string"
      }
    ],
    "profile_image": "http://example.com",
    "date_joined": "2019-08-24T14:15:22Z"
  }
]
On this doc we’ll make a test request to the API to the account-member endpoint to check if your Token works by requesting the users list on our account.

Header parameters

Authorization
required
The authentication API token from your account

Body parameters

page
integer
The page number to retrieve.
page_size
integer
The number of items per page.
[
  {
    "first_name": "string",
    "last_name": "string",
    "email": "user@example.com",
    "id": 0,
    "teams": [
      {
        "id": 0,
        "name": "string",
        "assignment_strategy": "string"
      }
    ],
    "account": 0,
    "groups": [
      {
        "id": 0,
        "name": "string"
      }
    ],
    "profile_image": "http://example.com",
    "date_joined": "2019-08-24T14:15:22Z"
  }
]