PUT api/invoice/processreceiptlistitems?negotiatorId={negotiatorId}
Process receipt list items for a specific negotiator.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| negotiatorId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ProcessReceiptItemResponseDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalAllocated | decimal number |
None. |
|
| TotalReceipted | decimal number |
None. |
|
| FailedReceiptItems | Collection of FailedReceiptItemDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalAllocated": 1.0,
"TotalReceipted": 2.0,
"FailedReceiptItems": [
{
"ReceiptItemId": 1,
"Message": "sample string 2"
},
{
"ReceiptItemId": 1,
"Message": "sample string 2"
}
]
}