POST api/PayId/transactions/maps/retry

Request Information

URI Parameters

None.

Body Parameters

InitiatePayIdMapRequest
NameDescriptionTypeAdditional 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:

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

Response Information

Resource Description

MapPaymentResult
NameDescriptionTypeAdditional 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>