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" : "7LL43KD8", "Identifier" : "5 lfoWf4LWgPHK", "ContactId" : "98", "SourceId" : "2" }, { "ContactIdentifierId" : "gNROzaLWe2yPAj5Wp", "Identifier" : "4rK 0 peXI9", "ContactId" : "82", "SourceId" : "1" }, ... ]

Select ContactIdentifier by Id

https://customerapi.fts-crm360.com/data/ContactIdentifiers('string key')
HttpMethod : GET
Json Result :
{ "ContactIdentifierId" : "tAo1rYG9", "Identifier" : "JJdtpKxl3cw", "ContactId" : "8", "SourceId" : "5" }

Create a ContactIdentifier

https://customerapi.fts-crm360.com/data/ContactIdentifiers()
HttpMethod : POST
Json Post :
{
"Identifier" : "sXbjUCBXp1kh 5D",
"ContactId" : "66",
"SourceId" : "3"
}
            
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" : "6SApXF Tk",
"Identifier" : "EWPHNW7dOzy6W",
"ContactId" : "78",
"SourceId" : "5"
}
            
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 :
{
"SourceId" : "6"
}
            
Informations :
- Non mandatory fields are optional for Json Post

Delete a ContactIdentifier

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