PUT api/receipt/paymentitem?negotiatorId={negotiatorId}&manualProcess={manualProcess}
Process payment items
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| negotiatorId | integer |
Required |
|
| manualProcess | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
ProcessPaymentItemResponseDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Payments | Collection of integer |
None. |
|
| PaymentStatementPreviewReziDocumentRefs | Collection of string |
None. |
|
| FailedPaymentItems | Collection of FailedPaymentItemDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{
"Payments": [
1,
2
],
"PaymentStatementPreviewReziDocumentRefs": [
"sample string 1",
"sample string 2"
],
"FailedPaymentItems": [
{
"PaymentItemId": 1,
"Message": "sample string 2"
},
{
"PaymentItemId": 1,
"Message": "sample string 2"
}
]
}