Skip to main content
POST
/
platform-api
/
v1
/
customers
/
linked_contacts
Get linked contacts
curl --request POST \
  --url https://app.sagepilot.ai/platform-api/v1/customers/linked_contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": "<string>"
}
'
{
  "success": true,
  "contacts": [
    {
      "id": "8258ac65-4073-44b8-83f5-b459ab9ff68e",
      "name": "Vikram Singh Chundawat",
      "email": "[email protected]",
      "phone": null,
      "is_primary": false,
      "created_at": "2025-03-18T20:49:09.137699Z",
      "source": "playground"
    },
    {
      "id": "70c42a1c-da1e-488e-b24f-ece6b2f3a5fe",
      "name": "Vikram Singh Chundawat",
      "email": "[email protected]",
      "phone": "918003213447",
      "is_primary": false,
      "created_at": "2025-01-06T19:44:10.643789Z",
      "source": "web_widget"
    }
  ]
}
{
  "success": true,
  "contacts": [
    {
      "id": "8258ac65-4073-44b8-83f5-b459ab9ff68e",
      "name": "Vikram Singh Chundawat",
      "email": "[email protected]",
      "phone": null,
      "is_primary": false,
      "created_at": "2025-03-18T20:49:09.137699Z",
      "source": "playground"
    },
    {
      "id": "70c42a1c-da1e-488e-b24f-ece6b2f3a5fe",
      "name": "Vikram Singh Chundawat",
      "email": "[email protected]",
      "phone": "918003213447",
      "is_primary": false,
      "created_at": "2025-01-06T19:44:10.643789Z",
      "source": "web_widget"
    }
  ]
}
Get contacts linked to a customer through shared identity tracking.

Required access

AuthenticationScopeDataset grant
API client v2customers:readcustomers

Body

contactId
string
required
Contact/customer UUID used to find linked contacts. Open a customer in the Customer module and use the last UUID in the URL: /dashboard/[workspace_id]/customers/[customer_id]. See Resource IDs.

Response

success
boolean
required
Whether the request succeeded.
contacts
object[]
required
Linked contacts.