StoreState entities
Name | Type | Is Mandatory |
---|---|---|
StoreStateId | Int16 | |
Label | String | |
DeletionFlag | Boolean | |
Stores | Collection of Store | |
StoreStateTranslations | Collection of StoreStateTranslation |
Select all StoreStates
https://customerapi.fts-crm360.com/data/StoreStates()
HttpMethod : GET
Json Result :
[
{
"StoreStateId" : "9",
"Label" : "fEFX QLbF jRcii0",
"DeletionFlag" : "False"
},
{
"StoreStateId" : "5",
"Label" : "nVc8zsto",
"DeletionFlag" : "False"
},
...
]
Select StoreState by Id
https://customerapi.fts-crm360.com/data/StoreStates(9)
HttpMethod : GET
Json Result :
{
"StoreStateId" : "3",
"Label" : "kvhKq45EsQ",
"DeletionFlag" : "False"
}
Create a StoreState
https://customerapi.fts-crm360.com/data/StoreStates()
HttpMethod : POST
Json Post :
{
"Label" : "FQnL9v0Fra",
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a StoreState
https://customerapi.fts-crm360.com/data/StoreStates(9)
HttpMethod : PUT
Json Post :
{
"StoreStateId" : "8",
"Label" : "oZmicyYKKst YKFE",
"DeletionFlag" : "True"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a StoreState
https://customerapi.fts-crm360.com/data/StoreStates(9)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "False"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a StoreState
https://customerapi.fts-crm360.com/data/StoreStates(9)
HttpMethod : DELETE
Translate a StoreState label
https://customerapi.fts-crm360.com/data/StoreStates(9)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3