POST api/PayId/transactions/maps/retry
Request Information
URI Parameters
None.
Body Parameters
InitiatePayIdMapRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Items": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<InitiatePayIdMapRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.External.Models.PayId">
<Items xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.External.Models">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Items>
</InitiatePayIdMapRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
MapPaymentResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| Errors | Collection of ErrorResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Errors": [
{
"Reference": "sample string 1",
"ErrorCode": 2,
"ErrorMessage": "sample string 3"
},
{
"Reference": "sample string 1",
"ErrorCode": 2,
"ErrorMessage": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<MapPaymentResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.External.Models.PayId">
<Errors xmlns:d2p1="http://schemas.datacontract.org/2004/07/ConsoleAPI.External.Models">
<d2p1:ErrorResponse>
<d2p1:ErrorCode>2</d2p1:ErrorCode>
<d2p1:ErrorMessage>sample string 3</d2p1:ErrorMessage>
<d2p1:Reference>sample string 1</d2p1:Reference>
</d2p1:ErrorResponse>
<d2p1:ErrorResponse>
<d2p1:ErrorCode>2</d2p1:ErrorCode>
<d2p1:ErrorMessage>sample string 3</d2p1:ErrorMessage>
<d2p1:Reference>sample string 1</d2p1:Reference>
</d2p1:ErrorResponse>
</Errors>
<IsValid>true</IsValid>
</MapPaymentResult>