GET api/OuterGateLinkToPayment/infoPayment?IdPaymentOrder={IdPaymentOrder}

Request informations about a payment with IdPaymentOrder

Request Information

URI Parameters

NameDescriptionTypeAdditional information
IdPaymentOrder

string

Required

Max length: 100

Body Parameters

None.

Response Information

Resource Description

OuterLinkToPaymentGetPaymentInfoOut
NameDescriptionTypeAdditional information
status

LinkToPaymentTransactionStateEnum

None.

amount

decimal number

None.

currency

integer

None.

description

string

Max length: 150

smtpDelivered

boolean

None.

smtpDeliveredLastDate

date time

None.

ValidationResults

Object

None.

card-pan

string

None.

card-expiration

string

None.

card-brand

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 0,
  "amount": 1.0,
  "currency": 2,
  "description": "sample string 3",
  "smtpDelivered": true,
  "smtpDeliveredLastDate": "2025-05-14T05:55:19.3581906+02:00",
  "ValidationResults": {},
  "card-pan": "sample string 6",
  "card-expiration": "sample string 7",
  "card-brand": "sample string 8"
}

application/xml, text/xml

Sample:
<OuterLinkToPaymentGetPaymentInfoOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.Plugin.Payments.Services.Models.LinkToPayment">
  <Amount>1</Amount>
  <CardBrand>sample string 8</CardBrand>
  <CardExpiration>sample string 7</CardExpiration>
  <CardPan>sample string 6</CardPan>
  <Currency>2</Currency>
  <Description>sample string 3</Description>
  <SmtpDelivered>true</SmtpDelivered>
  <SmtpDeliveredLastDate>2025-05-14T05:55:19.3581906+02:00</SmtpDeliveredLastDate>
  <Status>Unknown</Status>
  <ValidationResults />
</OuterLinkToPaymentGetPaymentInfoOut>