GET api/Payment/GetLastFourNumbers
Request Information
URI Parameters
None
Body Parameters
None.
Response Information
Resource Description
Collection of CardNumber| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentId | integer |
None |
|
| LastFourDigits | string |
None |
Response Formats
application/json, text/json
Sample:
[
{
"paymentId": 1,
"lastFourDigits": "sample string 2"
},
{
"paymentId": 1,
"lastFourDigits": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfCardNumber xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Priceline.WebServices.Models">
<CardNumber>
<LastFourDigits>sample string 2</LastFourDigits>
<PaymentId>1</PaymentId>
</CardNumber>
<CardNumber>
<LastFourDigits>sample string 2</LastFourDigits>
<PaymentId>1</PaymentId>
</CardNumber>
</ArrayOfCardNumber>