POST RocketCard/TransactionHistory
Request Information
URI Parameters
None.
Body Parameters
RocketCardRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonID | integer |
None. |
|
| Amount | decimal number |
None. |
|
| PurchaseID | integer |
None. |
|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
|
| BlockingReason | string |
None. |
|
| RocketCardNumber | string |
None. |
|
| RocketCardCVV | integer |
None. |
|
| RocketCardID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PersonID": 1,
"Amount": 2.0,
"PurchaseID": 3,
"StartDate": "sample string 4",
"EndDate": "sample string 5",
"BlockingReason": "sample string 6",
"RocketCardNumber": "sample string 7",
"RocketCardCVV": 8,
"RocketCardID": 9
}
application/xml, text/xml
Sample:
<RocketCardRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YoVendoRecargaAPI.WebAPI.Models"> <Amount>2</Amount> <BlockingReason>sample string 6</BlockingReason> <EndDate>sample string 5</EndDate> <PersonID>1</PersonID> <PurchaseID>3</PurchaseID> <RocketCardCVV>8</RocketCardCVV> <RocketCardID>9</RocketCardID> <RocketCardNumber>sample string 7</RocketCardNumber> <StartDate>sample string 4</StartDate> </RocketCardRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |