RE: Adding links to sales
Hi Camelia,
You only have to populate the Links array with the entity type and the Id of the entity. The exception is entity type "url", where you must populate the url in the ExtraInfo property.
"Links": [
{
"EntityName": "url",
"Id": 2,
"Description": "WebSite Link",
"ExtraInfo": "https://www.bing.com",
},
{
"EntityName": "project",
"Id": 2,
"Description": "Project Link",
},
{
"EntityName": "sale",
"Id": 11,
"Description": "Sale Link",
},
{
"EntityName": "document",
"Id": 8,
"Description": "Document Link",
},
{
"EntityName": "appointment",
"Id": 78,
"Description": "Appnt Link",
}
]
Hope this helps!