GET api/OuterGateLinkToPayment/infoPayment?IdPaymentOrder={IdPaymentOrder}
Request informations about a payment with IdPaymentOrder
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| IdPaymentOrder | string |
Required Max length: 100 |
Body Parameters
None.
Response Information
Resource Description
OuterLinkToPaymentGetPaymentInfoOut| Name | Description | Type | Additional 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. |
|
| PaymentDate | date time |
None. |
|
| LastAttemptedPaymentStartDate | date time |
None. |
|
| PaymentOrderExecutedDate | date time |
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-12-20T13:14:37.1916761+01:00",
"ValidationResults": {},
"PaymentDate": "2025-12-20T13:14:37.1916761+01:00",
"LastAttemptedPaymentStartDate": "2025-12-20T13:14:37.1916761+01:00",
"PaymentOrderExecutedDate": "2025-12-20T13:14:37.1916761+01:00",
"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> <ExecutionDate>2025-12-20T13:14:37.1916761+01:00</ExecutionDate> <LastPaymentAttemptDate>2025-12-20T13:14:37.1916761+01:00</LastPaymentAttemptDate> <PaymentDate>2025-12-20T13:14:37.1916761+01:00</PaymentDate> <SmtpDelivered>true</SmtpDelivered> <SmtpDeliveredLastDate>2025-12-20T13:14:37.1916761+01:00</SmtpDeliveredLastDate> <Status>Unknown</Status> <ValidationResults /> </OuterLinkToPaymentGetPaymentInfoOut>