Creating a link between modules
Creating a link between modules
Hi!
We need to create a link between a contact and a deal, and a link between a deal and an account (
assuming an account is the correct type of module
).
Having read the documentation,
Linking Module APIs
, we would need to know what the actual endpoint is, but not guidance is provided.
So, for example, I've tried:
PUT
https://www.zohoapis.eu/crm/v2/contacts/contact_id/deals/deal_id
... but got the error:
{
"code": "INVALID_DATA",
"details": {
"expected_data_type": "jsonobject"
},
"message": "body",
"status": "error"
}
... and also:
PUT
https://www.zohoapis.eu/crm/v2/deals/deal_id/contacts/contact_id
... but got another error:
{
"code": "INVALID_DATA",
"details": {},
"message": "the relation name given seems to be invalid",
"status": "error"
}