Data Analysis
cURL
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>" } } ] } }
List all connections and their details from a specific fabric
Prophecy authentication token. Required for all API requests.
The unique ID of the parent fabric
A list of all connections in a fabric
Indicates whether the request was successful.
Show child attributes
Was this page helpful?