Skip to content
  • Auto
  • Light
  • Dark
Get Started

List

List
get/api/v1/apps/{app_id}/connectors

List connectors for an app.

Path Parameters
app_idstring

The appId field.

Query Parameters
page_sizenumber
optional

The pageSize field.

formatint32
page_tokenstring
optional

The pageToken field.

Returns
expandedarray of object
optional

List of serialized related objects

Hide ParametersShow Parameters
@typestring
optional

The type of the serialized message.

listarray of appPathstringconnectorC1APIAppV1ConnectorusersPathstringC1APIAppV1ConnectorView
optional

The list of results containing up to X results, where X is the page size defined in the request

nextPageTokenstring
optional

The nextPageToken is shown for the next page if the number of results is larger than the max page size. The server returns one page of results and the nextPageToken until all results are retreived. To retrieve the next page, use the same request and append a pageToken field with the value of nextPageToken shown on the previous page.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/apps/$APP_ID/connectors \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "expanded": [
    {
      "@type": "@type"
    }
  ],
  "list": [
    {
      "appPath": "appPath",
      "connector": {
        "id": "id",
        "appId": "appId",
        "catalogId": "catalogId",
        "config": {
          "@type": "@type"
        },
        "description": "description",
        "displayName": "displayName",
        "oauthAuthorizedAs": {},
        "profileAllowList": [
          "string"
        ],
        "profileIgnoreList": [
          "string"
        ],
        "status": {
          "completedAt": "2019-12-27T18:11:19.117Z",
          "lastError": "lastError",
          "startedAt": "2019-12-27T18:11:19.117Z",
          "status": "SYNC_STATUS_UNSPECIFIED",
          "updatedAt": "2019-12-27T18:11:19.117Z"
        },
        "syncDisabledCategory": "syncDisabledCategory",
        "syncDisabledReason": "syncDisabledReason",
        "userIds": [
          "string"
        ]
      },
      "usersPath": "usersPath"
    }
  ],
  "nextPageToken": "nextPageToken"
}