Document Link to CRM
Create Linked Object
Create a linked object in the document.
🚧
You can only link each document to each CRM once. This ensures the consistent functionality of the two-way CRM sync.
You can, however, link one document to several external systems.
post/public/v1/documents/{id}/linked-objects
Path parameters
idstring required
Specify document ID.
Request body
Example request
{
"provider": "pipedrive",
"entity_type": "deal",
"entity_id": "9372"
}Response
Created
Example response
{
"id": "abb4d3fc-919b-491e-9e08-775036660c0b",
"provider": "pipedrive",
"entity_type": "deal",
"entity_id": "9372",
"children": [
{
"id": "abb4d3fc-919b-491e-9e08-775036660c0b",
"entity_type": "deal",
"entity_id": "9372"
}
]
}