Manage the types of link between 2 contact entities.
Name | Type | Is Mandatory |
---|---|---|
ContactLinkTypeId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
ContactLinks | Collection of ContactLink | |
ContactLinkTypeTranslations | Collection of ContactLinkTypeTranslation |
Select all ContactLinkTypes
https://customerapi.fts-crm360.com/data/ContactLinkTypes()
HttpMethod : GET
Json Result :
[
{
"ContactLinkTypeId" : "9",
"Label" : "fEFX QLbF jRcii0",
"DeletionFlag" : "False"
},
{
"ContactLinkTypeId" : "5",
"Label" : "nVc8zsto",
"DeletionFlag" : "False"
},
...
]
Select ContactLinkType by Id
https://customerapi.fts-crm360.com/data/ContactLinkTypes(9)
HttpMethod : GET
Json Result :
{
"ContactLinkTypeId" : "3",
"Label" : "kvhKq45EsQ",
"DeletionFlag" : "False"
}
Create a ContactLinkType
https://customerapi.fts-crm360.com/data/ContactLinkTypes()
HttpMethod : POST
Json Post :
{
"Label" : "FQnL9v0Fra",
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a ContactLinkType
https://customerapi.fts-crm360.com/data/ContactLinkTypes(9)
HttpMethod : PUT
Json Post :
{
"ContactLinkTypeId" : "8",
"Label" : "oZmicyYKKst YKFE",
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a ContactLinkType
https://customerapi.fts-crm360.com/data/ContactLinkTypes(9)
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(9)
HttpMethod : DELETE
Translate a ContactLinkType label
https://customerapi.fts-crm360.com/data/ContactLinkTypes(9)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3