POST v6/operation/packout/associate
Request Information
URI Parameters
None.
Body Parameters
PackOutAssociateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Barcode | string |
None. |
|
| TICBarcodes | Collection of string |
None. |
|
| RentalID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"barcode": "sample string 1",
"ticBarcodes": [
"sample string 1",
"sample string 2"
],
"rentalID": 2
}
Response Information
Resource Description
MultiRTIResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Response |
Actual Response from database. Can contain any model needed |
Object |
None. |
| Errors |
List of errors from stored procedure |
Collection of ErrorModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"response": {},
"errors": [
{
"barcode": "sample string 1",
"errorMessage": "sample string 2"
},
{
"barcode": "sample string 1",
"errorMessage": "sample string 2"
}
]
}