POST
/
sources
/
{source_id}
/
connect_links
curl --request POST \
  --url https://app.getcensus.com/api/v1/sources/{source_id}/connect_links \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "redirect_uri": "<string>"
}'
{
  "status": "created",
  "data": {
    "id": 469,
    "type": "postgres",
    "expiration": "2023-07-22T23:42:47.239Z",
    "expired": false,
    "revoked": false,
    "uri": "https://app.getcensus.com/pbc?auth=expiring_auth_key",
    "redirect_uri": "<string>",
    "source_id": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer token for the current workspace. Can be retrieved from the Workspace's settings page.

Path Parameters

source_id
integer
required

Body

application/json

Response

201
application/json
Source connect link created successfully

The response is of type object.