List
List all account transactions.
Request
GET https://ttv.microworkers.com/api/v2/accounts/me/transactions
Parameters
| Query Parameters | ||
|---|---|---|
| Name | Type | Description | 
| pageSize | integer | The maximum number of Transactions to include in the response, used for paging. Default:  | 
| sort | string | Results may be sorted by:  | 
| nextPageToken | string | The pagination token used to get the next page of results, set this parameter to the value of “nextPageToken” from the previous response. | 
| filter[createdAt][op] | string | Filter Transactions by creation date operator. Required, if filter[createdAt][value] provided. Allowed values:  
 | 
| filter[createdAt][value] | string | Filter Transactions by creation date value. Required, if filter[createdAt][op] provided. 
 | 
| filter[type] | string | Filter Transactions by type. Allowed values:  | 
Response
Response HTTP Codes
| Http Code | Response Type | Description | 
|---|---|---|
| 200 | OK | |
| 401 | Unauthorized | 
Response Body
{
  "items": [
    {
      "id": string,
      "type": string,
      "createdAt": datetime,
      "description": string,
      "amount": float
    }
  ],
  "nextPageToken": string,
  "perPage": integer
}
TransactionListResponse
| Property | Type | Description | 
|---|---|---|
| items | array[TransactionInfoResponse] | List of Transactions. | 
| perPage | integer | The number of items per page. | 
| nextPageToken | string | The pagination token of next page of results. |