GET Payment/CardList?val={val}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| val | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PaymentCardItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| Number | string |
None. |
|
| CardService | string |
None. |
|
| Year | string |
None. |
|
| Month | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"Number": "sample string 3",
"CardService": "sample string 4",
"Year": "sample string 5",
"Month": "sample string 6"
},
{
"ID": 1,
"Name": "sample string 2",
"Number": "sample string 3",
"CardService": "sample string 4",
"Year": "sample string 5",
"Month": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfPaymentCardItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models">
<PaymentCardItem>
<CardService>sample string 4</CardService>
<ID>1</ID>
<Month>sample string 6</Month>
<Name>sample string 2</Name>
<Number>sample string 3</Number>
<Year>sample string 5</Year>
</PaymentCardItem>
<PaymentCardItem>
<CardService>sample string 4</CardService>
<ID>1</ID>
<Month>sample string 6</Month>
<Name>sample string 2</Name>
<Number>sample string 3</Number>
<Year>sample string 5</Year>
</PaymentCardItem>
</ArrayOfPaymentCardItem>