PUT api/invoice/processreceiptlistitems?negotiatorId={negotiatorId}

Process receipt list items for a specific negotiator. Processes this invoice API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
negotiatorId

The unique identifier of the negotiator resource.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

ProcessReceiptItemResponseDataContract
NameDescriptionTypeAdditional information
TotalAllocated

The total allocated value.

decimal number

None.

TotalReceipted

The total receipted value.

decimal number

None.

FailedReceiptItems

The collection of failed receipt items.

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"
    }
  ]
}