CRM360° CustomerApi Documentation

Customer - ContactAddressType

Manage the contact address types entities.

Required HTTP Headers

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

Functions

Entity Properties

Name Type Is Mandatory
ContactAddressTypeId Int16
Label String
DeletionFlag Boolean
ContactAddressTypeTranslations Collection of ContactAddressTypeTranslation
MarketingExecutions Collection of MarketingExecution
Addresses Collection of Address

Examples

Select all ContactAddressTypes

https://customerapi.fts-crm360.com/data/ContactAddressTypes()
HttpMethod : GET
Json Result :
[ { "ContactAddressTypeId" : "3", "Label" : "WXPHX9xGQ aRUm", "DeletionFlag" : "False" }, { "ContactAddressTypeId" : "8", "Label" : "SXGB2Qj0Zif", "DeletionFlag" : "False" }, ... ]

Select ContactAddressType by Id

https://customerapi.fts-crm360.com/data/ContactAddressTypes(3)
HttpMethod : GET
Json Result :
{ "ContactAddressTypeId" : "1", "Label" : "Cu6jwL R", "DeletionFlag" : "True" }

Create a ContactAddressType

https://customerapi.fts-crm360.com/data/ContactAddressTypes()
HttpMethod : POST
Json Post :
{
"Label" : "1aqiz2",
"DeletionFlag" : "True"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Update a ContactAddressType

https://customerapi.fts-crm360.com/data/ContactAddressTypes(3)
HttpMethod : PUT
Json Post :
{
"ContactAddressTypeId" : "9",
"Label" : "mwIle",
"DeletionFlag" : "False"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Patch a ContactAddressType

https://customerapi.fts-crm360.com/data/ContactAddressTypes(3)
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(3)
HttpMethod : DELETE

Translate a ContactAddressType label

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