CRM360° CustomerApi Documentation

Customer - ContactIdentifier

Manage the contact identifier entities for the current user's allowed zones. Each contact can have O, 1 or many identifiers.

Required HTTP Headers

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

Functions

Entity Properties

Name Type Is Mandatory
ContactIdentifierId String
Identifier String
ContactId Int32
SourceId Int16
Contact Contact
Source Source

Examples

Select all ContactIdentifiers

https://customerapi.fts-crm360.com/data/ContactIdentifiers()
HttpMethod : GET
Json Result :
[ { "ContactIdentifierId" : "XzUYC5kwKHpmm4B l", "Identifier" : "OiIvkKyhG17xzVvbAvb", "ContactId" : "93", "SourceId" : "6" }, { "ContactIdentifierId" : "aR7It5", "Identifier" : "0Dy54APpmOI", "ContactId" : "60", "SourceId" : "5" }, ... ]

Select ContactIdentifier by Id

https://customerapi.fts-crm360.com/data/ContactIdentifiers('string key')
HttpMethod : GET
Json Result :
{ "ContactIdentifierId" : "u YUU1J3RiqZKG2za", "Identifier" : "2GQxJ24TexZ", "ContactId" : "52", "SourceId" : "3" }

Create a ContactIdentifier

https://customerapi.fts-crm360.com/data/ContactIdentifiers()
HttpMethod : POST
Json Post :
{
"Identifier" : "BQrbi ZDP",
"ContactId" : "95",
"SourceId" : "8"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Update a ContactIdentifier

https://customerapi.fts-crm360.com/data/ContactIdentifiers('string key')
HttpMethod : PUT
Json Post :
{
"ContactIdentifierId" : "Pf1Iyyys",
"Identifier" : "Zh7qg  XXdwPVW4",
"ContactId" : "43",
"SourceId" : "4"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Patch a ContactIdentifier

https://customerapi.fts-crm360.com/data/ContactIdentifiers('string key')
HttpMethod : PATCH
Json Post :
{
"ContactId" : "25"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Delete a ContactIdentifier

https://customerapi.fts-crm360.com/data/ContactIdentifiers('string key')
HttpMethod : DELETE