Manage the contact's type entities.
Name | Type | Is Mandatory |
---|---|---|
ContactTypeId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
Contacts | Collection of Contact | |
ContactTypeTranslations | Collection of ContactTypeTranslation |
Select all ContactTypes
https://customerapi.fts-crm360.com/data/ContactTypes()
HttpMethod : GET
Json Result :
[
{
"ContactTypeId" : "3",
"Label" : "zEAiGtx3MPv9soThpm",
"DeletionFlag" : "False"
},
{
"ContactTypeId" : "4",
"Label" : "oaKaGP8c16oys2fm",
"DeletionFlag" : "True"
},
...
]
Select ContactType by Id
https://customerapi.fts-crm360.com/data/ContactTypes(3)
HttpMethod : GET
Json Result :
{
"ContactTypeId" : "1",
"Label" : "M1dZ S7QurUy0IJ",
"DeletionFlag" : "True"
}
Create a ContactType
https://customerapi.fts-crm360.com/data/ContactTypes()
HttpMethod : POST
Json Post :
{
"Label" : "G d WTGL xy6 fVM",
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a ContactType
https://customerapi.fts-crm360.com/data/ContactTypes(3)
HttpMethod : PUT
Json Post :
{
"ContactTypeId" : "2",
"Label" : "vm Sr",
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a ContactType
https://customerapi.fts-crm360.com/data/ContactTypes(3)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a ContactType
https://customerapi.fts-crm360.com/data/ContactTypes(3)
HttpMethod : DELETE
Translate a ContactType label
https://customerapi.fts-crm360.com/data/ContactTypes(3)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3