POST api/v{version}/Printt/cards
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version |
The requested API version |
string |
Required Default value is 1 |
Body Parameters
None.
Response Information
Resource Description
PrinttCard| Name | Description | Type | Additional information |
|---|---|---|---|
| brand | string |
None. |
|
| last4 | string |
None. |
|
| exp_year | integer |
None. |
|
| exp_month | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"brand": "sample string 1",
"last4": "sample string 2",
"exp_year": 3,
"exp_month": 4
}
text/javascript
Sample:
{"brand":"sample string 1","last4":"sample string 2","exp_year":3,"exp_month":4}
application/xml, text/xml
Sample:
<PrinttCard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNITE.External.API.Support.Printt"> <brand>sample string 1</brand> <exp_month>4</exp_month> <exp_year>3</exp_year> <last4>sample string 2</last4> </PrinttCard>