CRM360° CustomerApi Documentation

Customer - ContactLinkType

Manage the types of link between 2 contact entities.

Required HTTP Headers

  • X-Crm360Api-Token
  • X-Crm360Api-CustomerName
  • X-Crm360Api-DatabaseAlias

Functions

Entity Properties

Name Type Is Mandatory
ContactLinkTypeId Int16
Label String
DeletionFlag Boolean
ContactLinks Collection of ContactLink
ContactLinkTypeTranslations Collection of ContactLinkTypeTranslation

Examples

Select all ContactLinkTypes

https://customerapi.fts-crm360.com/data/ContactLinkTypes()
HttpMethod : GET
Json Result :
[ { "ContactLinkTypeId" : "8", "Label" : "jDEGAro1PhFZy08w", "DeletionFlag" : "False" }, { "ContactLinkTypeId" : "8", "Label" : "5S79YXM3kLTOP", "DeletionFlag" : "True" }, ... ]

Select ContactLinkType by Id

https://customerapi.fts-crm360.com/data/ContactLinkTypes(8)
HttpMethod : GET
Json Result :
{ "ContactLinkTypeId" : "3", "Label" : "p6WiSer5I PxIReD", "DeletionFlag" : "True" }

Create a ContactLinkType

https://customerapi.fts-crm360.com/data/ContactLinkTypes()
HttpMethod : POST
Json Post :
{
"Label" : "5enEsuzzDq6S1",
"DeletionFlag" : "False"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Update a ContactLinkType

https://customerapi.fts-crm360.com/data/ContactLinkTypes(8)
HttpMethod : PUT
Json Post :
{
"ContactLinkTypeId" : "5",
"Label" : "T0APSa",
"DeletionFlag" : "False"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Patch a ContactLinkType

https://customerapi.fts-crm360.com/data/ContactLinkTypes(8)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "False"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Delete a ContactLinkType

https://customerapi.fts-crm360.com/data/ContactLinkTypes(8)
HttpMethod : DELETE

Translate a ContactLinkType label

https://customerapi.fts-crm360.com/data/ContactLinkTypes(8)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3