Get all organization transactions
GET/api/organization/transaction
Returns all organization transactions
Request
Query Parameters
page integer
Possible values: >= 1
Page number
per_page integer
Possible values: >= 1 and <= 100
Number of items per page
Responses
- 200
- default
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
items object[]required
An array of organization transactions.
id uuidrequired
The unique identifier of the organization transaction.
created_at_utc date-timerequired
The creation time of the organization transaction.
amount objectrequired
Amount object
value stringrequired
The value of the amount.
currency stringrequired
The currency of the amount.
campaign_id uuidrequired
The unique identifier of the campaign.
details stringrequired
The details of the organization transaction.
total integerrequired
The total number of organization transactions.
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created_at_utc": "2024-09-13T10:30:55.772Z",
"amount": {
"value": "string",
"currency": "string"
},
"campaign_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"details": "string"
}
],
"total": 0
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
code int32required
The error code
message stringrequired
A human-readable error message
{
"code": 0,
"message": "string"
}
Loading...