Title entities
Name | Type | Is Mandatory |
---|---|---|
TitleId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
Contacts | Collection of Contact | |
TitleTranslations | Collection of TitleTranslation |
Select all Titles
https://customerapi.fts-crm360.com/data/Titles()
HttpMethod : GET
Json Result :
[
{
"TitleId" : "7",
"Label" : "AO9Bm ZxY F 7R97",
"DeletionFlag" : "False"
},
{
"TitleId" : "3",
"Label" : "w5Air0",
"DeletionFlag" : "True"
},
...
]
Select Title by Id
https://customerapi.fts-crm360.com/data/Titles(7)
HttpMethod : GET
Json Result :
{
"TitleId" : "7",
"Label" : "eeCthi1cF2",
"DeletionFlag" : "False"
}
Create a Title
https://customerapi.fts-crm360.com/data/Titles()
HttpMethod : POST
Json Post :
{
"Label" : "p1Tx1CkTW7hNk42",
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a Title
https://customerapi.fts-crm360.com/data/Titles(7)
HttpMethod : PUT
Json Post :
{
"TitleId" : "7",
"Label" : "MMQCS37YR",
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a Title
https://customerapi.fts-crm360.com/data/Titles(7)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a Title
https://customerapi.fts-crm360.com/data/Titles(7)
HttpMethod : DELETE
Translate a Title label
https://customerapi.fts-crm360.com/data/Titles(7)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3