POST api/jcbatch/getbatches
Request Information
URI Parameters
None.
Body Parameters
Collection of integerRequest Formats
application/json, text/json
Sample:
[ 1, 2 ]
application/xml, text/xml
Sample:
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <int>1</int> <int>2</int> </ArrayOfint>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of BatchResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| BatchId | integer |
None. |
|
| LineId | integer |
None. |
|
| PostStatus | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BatchId": 1,
"LineId": 2,
"PostStatus": "sample string 3"
},
{
"BatchId": 1,
"LineId": 2,
"PostStatus": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfBatchResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.JC">
<BatchResponse>
<BatchId>1</BatchId>
<LineId>2</LineId>
<PostStatus>sample string 3</PostStatus>
</BatchResponse>
<BatchResponse>
<BatchId>1</BatchId>
<LineId>2</LineId>
<PostStatus>sample string 3</PostStatus>
</BatchResponse>
</ArrayOfBatchResponse>