Manage the stores attached to contacts for the current user's allowed zones.
Name | Type | Is Mandatory |
---|---|---|
AttachedStoreId | String | |
ContactId | Int32 | |
StoreId | Int32 | |
DeletionFlag | Boolean | |
AttachedStoreTypeId | Int16 | |
Contact | Contact | |
Store | Store | |
AttachedStoreType | AttachedStoreType |
Select all AttachedStores
https://customerapi.fts-crm360.com/data/AttachedStores()
HttpMethod : GET
Json Result :
[
{
"AttachedStoreId" : "dAmtmqK",
"ContactId" : "19",
"StoreId" : "41",
"DeletionFlag" : "True",
"AttachedStoreTypeId" : "8"
},
{
"AttachedStoreId" : "1QpS2h47lkBy3 80V",
"ContactId" : "26",
"StoreId" : "84",
"DeletionFlag" : "False",
"AttachedStoreTypeId" : "8"
},
...
]
Select AttachedStore by Id
https://customerapi.fts-crm360.com/data/AttachedStores('string key')
HttpMethod : GET
Json Result :
{
"AttachedStoreId" : "TzgoXWZxb9AfQM",
"ContactId" : "75",
"StoreId" : "93",
"DeletionFlag" : "False",
"AttachedStoreTypeId" : "9"
}
Create a AttachedStore
https://customerapi.fts-crm360.com/data/AttachedStores()
HttpMethod : POST
Json Post :
{
"ContactId" : "60",
"StoreId" : "20",
"DeletionFlag" : "True",
"AttachedStoreTypeId" : "9"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a AttachedStore
https://customerapi.fts-crm360.com/data/AttachedStores('string key')
HttpMethod : DELETE