GET
/
sync_management_links
/
{sync_management_link_id}
Fetch sync management link
curl --request GET \
  --url https://app.getcensus.com/api/v1/sync_management_links/{sync_management_link_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "id": 469,
    "type": "SyncConfiguration",
    "expiration": "2023-07-22T23:42:47.239Z",
    "expired": false,
    "revoked": false,
    "uri": "https://app.getcensus.com/embedded_sync_wizard?auth=expiring_auth_key",
    "redirect_uri": "<string>",
    "sync_id": 123
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

ID of the Sync Management Link

Response

Successfully retrieved sync management link details.

The response is of type object.