Manage the contact address types entities.
Name | Type | Is Mandatory |
---|---|---|
ContactAddressTypeId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
ContactAddressTypeTranslations | Collection of ContactAddressTypeTranslation | |
MarketingExecutions | Collection of MarketingExecution | |
Addresses | Collection of Address |
Select all ContactAddressTypes
https://customerapi.fts-crm360.com/data/ContactAddressTypes()
HttpMethod : GET
Json Result :
[
{
"ContactAddressTypeId" : "6",
"Label" : "YG5ava HNGhZ",
"DeletionFlag" : "True"
},
{
"ContactAddressTypeId" : "7",
"Label" : "NJEDg5qTk5emK",
"DeletionFlag" : "True"
},
...
]
Select ContactAddressType by Id
https://customerapi.fts-crm360.com/data/ContactAddressTypes(6)
HttpMethod : GET
Json Result :
{
"ContactAddressTypeId" : "6",
"Label" : "BuMgqlbFF",
"DeletionFlag" : "False"
}
Create a ContactAddressType
https://customerapi.fts-crm360.com/data/ContactAddressTypes()
HttpMethod : POST
Json Post :
{
"Label" : "OBlME 7Zo2iEEtyU",
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a ContactAddressType
https://customerapi.fts-crm360.com/data/ContactAddressTypes(6)
HttpMethod : PUT
Json Post :
{
"ContactAddressTypeId" : "3",
"Label" : "oOozfp M5ms98sHaQ",
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a ContactAddressType
https://customerapi.fts-crm360.com/data/ContactAddressTypes(6)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a ContactAddressType
https://customerapi.fts-crm360.com/data/ContactAddressTypes(6)
HttpMethod : DELETE
Translate a ContactAddressType label
https://customerapi.fts-crm360.com/data/ContactAddressTypes(6)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3