POST api/checkoutstring/{id}
Save a checkout string
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Name of checkout string to save |
string |
Required |
Body Parameters
checkout string object to save
CheckoutStringName | Description | Type | Additional information |
---|---|---|---|
Name | string |
Required String length: inclusive between 0 and 60 |
|
Value | string |
String length: inclusive between 0 and 1024 |
|
Comment | string |
String length: inclusive between 0 and 128 |
|
Updated | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "name": "sample string 1", "value": "sample string 2", "comment": "sample string 3", "updated": "2025-08-02T23:26:11.1539301" }
application/xml, text/xml
Sample:
<CheckoutString xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Pos.Settings"> <Comment>sample string 3</Comment> <Name>sample string 1</Name> <Updated>2025-08-02T23:26:11.1539301+00:00</Updated> <Value>sample string 2</Value> </CheckoutString>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.