GET v1/ProfilePersons/{id}/SavedPaymentMethods/CreditCard/{savedPaymentId}
Get a Credit Card Type Saved Payment Method of the person
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
savedPaymentId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SavedPaymentOutputName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
paymentType | string |
None. |
|
partialNumber | string |
None. |
|
expirationMonth | integer |
None. |
|
expirationYear | integer |
None. |
|
requireCVV | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "paymentType": "sample string 2", "partialNumber": "sample string 3", "expirationMonth": 4, "expirationYear": 5, "requireCVV": true }
text/html
Sample:
{"Id":1,"paymentType":"sample string 2","partialNumber":"sample string 3","expirationMonth":4,"expirationYear":5,"requireCVV":true}
application/xml, text/xml
Sample:
<v1_ProfilePersons_ProfilePersonEndpointController.SavedPaymentOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_ProfilePersons_ProfilePersonEndpoint"> <Id>1</Id> <expirationMonth>4</expirationMonth> <expirationYear>5</expirationYear> <partialNumber>sample string 3</partialNumber> <paymentType>sample string 2</paymentType> <requireCVV>true</requireCVV> </v1_ProfilePersons_ProfilePersonEndpointController.SavedPaymentOutput>