# コネクション

特定のユーザーに属しているコネクションを取得するには、以下のエンドポイントを使用します。

# コネクションの列挙

認証されている Workato ユーザーに対するすべてのコネクションと関連するデータを返します。

GET /api/connections

# URL パラメータ

名前 説明
folder_id string
任意
コネクションのフォルダー ID。
parent_id string
任意
コネクションの親 ID。コネクションは同じプロバイダのものである必要があります。
external_id string
任意
外部 ID。通常は、コネクションを所有するユーザーに付与されます。
include_runtime_connections string
任意
"true" と指定すると、すべての実行時ユーザー接続も返されます。

# サンプルリクエスト

curl  -X GET https://www.workato.com/api/connections \
      -H 'x-user-email: <email>' \
      -H 'x-user-token: <token>'

# レスポンス

[
  {
    "application": "salesforce",
    "id": 36,
    "name": "ACME Production Salesforce connection",
    "description": null,
    "authorized_at": "2015-05-26T22:53:52.528Z",
    "authorization_status": "success",
    "authorization_error": null,
    "created_at": "2015-05-26T22:53:52.532Z",
    "updated_at": "2015-05-26T22:53:52.532Z",
    "external_id": null,
    "folder_id": 4515,
    "parent_id": null
  },
  {
      "application": "google_sheets",
      "id": 37,
      "name": "ACME google sheet account",
      "description": null,
      "authorized_at": "2015-05-26T22:53:52.528Z",
      "authorization_status": "success",
      "authorization_error": null,
      "created_at": "2015-05-26T22:53:52.532Z",
      "updated_at": "2015-05-26T22:53:52.532Z",
      "external_id": null,
      "folder_id": 4515,
      "parent_id": null
  }
]


Last updated: 2023/8/31 1:07:14