PUT api/store/{storeID}/complianceindicator/{id}
Update compliance indicator
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| storeID |
Store of the compliance indicator to match |
integer |
Required |
| id |
ID of the compliance indicator to match |
string |
Required |
Body Parameters
Compliance indicator model to update
ComplianceIndicator| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
String length: inclusive between 0 and 1 |
|
| StoreID | integer |
None. |
|
| Type | string |
String length: inclusive between 0 and 64 |
|
| Name | string |
String length: inclusive between 0 and 255 |
|
| TalkerRequired | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "sample string 1",
"storeID": 2,
"type": "sample string 3",
"name": "sample string 4",
"talkerRequired": true
}
application/xml, text/xml
Sample:
<ComplianceIndicator xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://gapsolutions.com.au/schema/ezimanager"> <ID>sample string 1</ID> <Name>sample string 4</Name> <StoreID>2</StoreID> <TalkerRequired>true</TalkerRequired> <Type>sample string 3</Type> </ComplianceIndicator>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.