POST POS/v3.1/Seats/Barcodes Try Now
Adds the barcodes.
Request Information
URI Parameters
None.
Body Parameters
The barcode details.
Collection of UpdateBarcodeRequest
| Name | Description | Type | Additional information |
|---|---|---|---|
| ValidateBarcode |
Value indicating whether to validate barcode .
|
boolean |
None.
|
| SeatId |
The seat identifier.
|
string |
Required
|
| Barcode |
The barcode.
|
string |
Optional
|
Request Formats
application/json, text/json
Sample:
[
{
"ValidateBarcode": true,
"SeatId": "",
"Barcode": ""
}
]
Response Information
Resource Description
| Name | Description | Type | Additional information |
|---|---|---|---|
| BarcodeDetails | Collection of BarcodeDetails |
None.
|
|
| Status | BulkActionStatus |
None.
|
|
| Errors | Collection of BarcodeDetails |
None.
|
Response Formats
application/json, text/json
Sample:
{
"BarcodeDetails": [
{
"SeatId": "",
"Barcode": [
""
],
"BarcodeStatus": "Any",
"WarningMessage": ""
}
],
"Status": "Success",
"Errors": [
{
"ErrorMessage": "",
"Item": {
"SeatId": "",
"Barcode": [
""
],
"BarcodeStatus": "Any",
"WarningMessage": ""
}
}
]
}