Manage the states of case entities.
Name | Type | Is Mandatory |
---|---|---|
CaseStateId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
Cases | Collection of Case | |
CaseStateTranslations | Collection of CaseStateTranslation |
Select all CaseStates
https://customerapi.fts-crm360.com/data/CaseStates()
HttpMethod : GET
Json Result :
[
{
"CaseStateId" : "6",
"Label" : "q TJ0VYOLiCqE",
"DeletionFlag" : "False"
},
{
"CaseStateId" : "2",
"Label" : "Rzt3KkjmHjsQo",
"DeletionFlag" : "True"
},
...
]
Select CaseState by Id
https://customerapi.fts-crm360.com/data/CaseStates(6)
HttpMethod : GET
Json Result :
{
"CaseStateId" : "6",
"Label" : "ZjCt9n332",
"DeletionFlag" : "True"
}
Create a CaseState
https://customerapi.fts-crm360.com/data/CaseStates()
HttpMethod : POST
Json Post :
{
"Label" : "D19g MnF",
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a CaseState
https://customerapi.fts-crm360.com/data/CaseStates(6)
HttpMethod : PUT
Json Post :
{
"CaseStateId" : "5",
"Label" : "EasAQoHkm uQf3",
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a CaseState
https://customerapi.fts-crm360.com/data/CaseStates(6)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a CaseState
https://customerapi.fts-crm360.com/data/CaseStates(6)
HttpMethod : DELETE
Translate a CaseState label
https://customerapi.fts-crm360.com/data/CaseStates(6)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3