POST card/depositbatch
Request Information
URI Parameters
None.
Body Parameters
CardStartBatchRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RequestorIdent | string |
None. |
|
| ProgramIdent | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RequestorIdent": "sample string 1",
"ProgramIdent": "sample string 2"
}
application/xml, text/xml
Sample:
<CardStartBatchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.EnterpriseServices.Domain.Model.Request"> <ProgramIdent>sample string 2</ProgramIdent> <RequestorIdent>sample string 1</RequestorIdent> </CardStartBatchRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CardStartBatchResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| HasErrors | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| BatchNum | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"HasErrors": true,
"ErrorMessage": "sample string 2",
"BatchNum": 3
}
application/xml, text/xml
Sample:
<CardStartBatchResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.EnterpriseServices.Domain.Model.Response"> <BatchNum>3</BatchNum> <ErrorMessage>sample string 2</ErrorMessage> <HasErrors>true</HasErrors> </CardStartBatchResponse>