GET REST/Payments/Bulk/{batchID}/summary

Request Information

URI Parameters

NameDescriptionTypeAdditional information
batchID

integer

Required

Body Parameters

None.

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>