メインコンテンツへスキップ
GET
https://{host}/me/v1
/
connected-accounts
/
connections
接続済みアカウントで利用可能な接続の一覧を取得
curl --request GET \
  --url https://{host}/me/v1/connected-accounts/connections \
  --header 'Authorization: Bearer <token>'
{
  "connections": [
    {
      "name": "<string>",
      "strategy": "<string>",
      "scopes": [
        "<string>"
      ]
    }
  ],
  "next": "<string>"
}

承認

Authorization
string
header
必須

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

クエリパラメータ

from
string

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

take
integer
デフォルト:10

返す結果の数 (1~20)

必須範囲: x >= 1

レスポンス

利用可能な接続を正常に取得しました

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

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