メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
users
/
{id}
/
connected-accounts
ユーザーの接続済みアカウントを取得
curl --request GET \
  --url https://{tenantDomain}/api/v2/users/{id}/connected-accounts \
  --header 'Authorization: Bearer <token>'
{
  "connected_accounts": [
    {
      "connection": "<string>",
      "connection_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "strategy": "<string>",
      "expires_at": "2023-11-07T05:31:56Z",
      "organization_id": "<string>",
      "scopes": [
        "<string>"
      ]
    }
  ],
  "next": "<string>"
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

id
string
必須

接続済みアカウントを一覧表示する対象ユーザーの ID。

クエリパラメータ

from
string

一覧取得を開始する位置を示す任意の ID。

take
integer

返される結果数。既定値は 10、最大値は 20 です

必須範囲: 1 <= x <= 100

レスポンス

接続済みアカウントを正常に取得しました。

connected_accounts
object[]
必須
next
string

接続済みアカウントの次のページを取得するためのトークン(ある場合)