GET api/Transaction?token={token}
list of all transactions
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| token | generated token on login |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"PaymentType": "sample string 1",
"Date": "2025-12-05T23:46:03.0413957-05:00",
"Amount": 3.0
},
{
"PaymentType": "sample string 1",
"Date": "2025-12-05T23:46:03.0413957-05:00",
"Amount": 3.0
},
{
"PaymentType": "sample string 1",
"Date": "2025-12-05T23:46:03.0413957-05:00",
"Amount": 3.0
}
]
application/xml, text/xml
Sample:
<ArrayOfTransaction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PardDriverWebService.Models">
<Transaction>
<Amount>3</Amount>
<Date>2025-12-05T23:46:03.0413957-05:00</Date>
<PaymentType>sample string 1</PaymentType>
</Transaction>
<Transaction>
<Amount>3</Amount>
<Date>2025-12-05T23:46:03.0413957-05:00</Date>
<PaymentType>sample string 1</PaymentType>
</Transaction>
<Transaction>
<Amount>3</Amount>
<Date>2025-12-05T23:46:03.0413957-05:00</Date>
<PaymentType>sample string 1</PaymentType>
</Transaction>
</ArrayOfTransaction>