メインコンテンツへスキップ
GET
https://{host}/me/v1
/
connected-accounts
/
accounts
接続済みアカウントの一覧を取得
curl --request GET \
  --url https://{host}/me/v1/connected-accounts/accounts \
  --header 'Authorization: Bearer <token>'
{
  "accounts": [
    {
      "connection": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "scopes": [
        "<string>"
      ],
      "expires_at": "2023-11-07T05:31:56Z",
      "org_id": "<string>"
    }
  ],
  "next": "<string>"
}

承認

Authorization
string
header
必須

Bearer トークンと DPoP トークンは、API の設定に応じてサポートされます

クエリパラメータ

connection

接続名で接続済みアカウントを絞り込む

Maximum string length: 128
from
string

ページネーション用カーソル - この位置から結果の取得を開始します

take
integer
デフォルト:10

返す結果の数 (1~20)

必須範囲: x >= 1

レスポンス

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

accounts
object[]
必須
Maximum array length: 20
next
string

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