POST REST/Payments/Bulk/summary

Request Information

URI Parameters

None.

Body Parameters

BatchProcessModel
NameDescriptionTypeAdditional information
ProcessDate

string

None.

BatchID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProcessDate": "sample string 1",
  "BatchID": 2
}

application/xml, text/xml

Sample:
<BatchProcessModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST.Bulk">
  <BatchID>2</BatchID>
  <ProcessDate>sample string 1</ProcessDate>
</BatchProcessModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BatchProcessModel'.

Response Information

Resource Description

BatchSummaryResponse
NameDescriptionTypeAdditional information
ItemCount

integer

None.

TotalAmount

decimal number

None.

Reference

string

None.

BatchID

integer

None.

Status

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ItemCount": 1,
  "TotalAmount": 2.0,
  "Reference": "sample string 3",
  "BatchID": 4,
  "Status": "sample string 5",
  "Message": "sample string 6"
}

application/xml, text/xml

Sample:
<BatchSummaryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST.Bulk">
  <Message xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST">sample string 6</Message>
  <Status xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST">sample string 5</Status>
  <BatchID>4</BatchID>
  <Reference>sample string 3</Reference>
  <ItemCount>1</ItemCount>
  <TotalAmount>2</TotalAmount>
</BatchSummaryResponse>