Skip to main content
GET
/
api
/
orchestration
/
fabric
/
{fabricId}
/
connection
List connections per fabric
curl --request GET \
  --url https://app.prophecy.io/api/orchestration/fabric/{fabricId}/connection \
  --header 'X-AUTH-TOKEN: <x-auth-token>'
{
  "success": true,
  "data": {
    "Connections": [
      {
        "id": "<connection-id-1>",
        "name": "bigquery_connection_1",
        "kind": "bigquery",
        "isDefaultWarehouseConnection": true,
        "properties": {
          "authType": "private_key",
          "dataset": "dev",
          "id": "",
          "projectId": "dev-project-2222",
          "serviceAccountKey": {
            "kind": "prophecy",
            "properties": {
              "id": "1234",
              "name": "bq_service_account_1"
            },
            "subKind": "text",
            "type": "secret"
          }
        }
      },
      {
        "id": "<connection-id-2>",
        "name": "sharepoint_connection_1",
        "kind": "sharepoint",
        "isDefaultWarehouseConnection": false,
        "properties": {
          "clientId": "<client-id>",
          "clientSecret": {
            "kind": "prophecy",
            "properties": {
              "id": "4670",
              "name": "client-secret-sharepoint"
            },
            "subKind": "text",
            "type": "secret"
          },
          "siteUrl": "https://<site>.sharepoint.com/sites/site",
          "tenantId": "<tenant-id>"
        }
      }
    ]
  }
}

Headers

X-AUTH-TOKEN
string
required

Prophecy authentication token. Required for all API requests.

Path Parameters

fabricId
string
required

The unique ID of the parent fabric

Response

200 - application/json

A list of all connections in a fabric

success
boolean

Indicates whether the request was successful.

data
object