GET
/
settings
/
v3
/
users
/
アカウントからユーザーのリストが取得されます
curl --request GET \
  --url https://api.hubapi.com/settings/v3/users/ \
  --header 'Authorization: Bearer <token>'
{
  "paging": {
    "next": {
      "link": "",
      "after": ""
    }
  },
  "results": [
    {
      "id": "123",
      "email": "newUser@email.com",
      "roleId": "100",
      "primaryTeamId": "101",
      "secondaryTeamIds": [
        "102"
      ],
      "superAdmin": "false"
    }
  ]
}
サポートされる製品
次のいずれかの製品またはそれ以上が必要です。
Marketing HubMarketing Hub無料ツール
Sales HubSales Hub無料ツール
Service HubService Hub無料ツール
Content HubContent Hub無料ツール

必須スコープ

この API には、次のいずれかのスコープが必要です。
  • crm.objects.users.read
  • settings.users.read

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

limit
integer

取得するユーザーの人数

after
string

結果では、ページあたり最大100人のユーザーが表示されます。追加の結果がある場合は次のページに表示されます。

Response

successful operation

The response is of type object.