TA Finance
  1. Transactions
TA Finance
  • Welcome!
  • Auth check
    • Check
      GET
  • Transactions
    • List
      GET
    • Create
      POST
    • Delete
      DELETE
  • Statements
    • Info
  • Counterparty
    • Info
  • Services
    • List
      GET
    • Create
      POST
  • Accounts
    • List
      GET
    • Create
      POST
  • Organizations
    • List
      GET
    • Create
      POST
  • Statistics
    • P&L
      POST
  1. Transactions

List

GET
/api/v1/transaction/list
Retrieves a filtered and paginated list of transactions using parameters such as date range, organization ID, counterparty ID, and transaction type. This endpoint enables a comprehensive analysis of historical financial records.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/transaction/list?from=2025-01-02' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "list": [
    {
      "id": 15,
      "realizationDate": "2025-03-31T00:00:00.000Z",
      "serviceId": 19,
      "counterpartyId": 18,
      "prepaymentAmount": 3000,
      "prepaymentDate": "2025-03-31T00:00:00.000Z",
      "prepaymentAccountId": 16,
      "postpaymentAmount": 2000,
      "postpaymentDate": "2025-03-31T00:00:00.000Z",
      "postpaymentAccountId": 16,
      "organizationId": 26,
      "type": "REVENUE",
      "createdAt": "2025-03-31T14:31:34.232Z",
      "updatedAt": "2025-03-31T14:31:34.232Z",
      "service": {
        "id": 19,
        "name": "Кубы",
        "counterpartyId": null,
        "organizationId": 26,
        "createdAt": "2025-03-31T14:31:07.287Z",
        "updatedAt": "2025-03-31T14:31:07.287Z"
      },
      "counterparty": {
        "id": 18,
        "name": "Эвент агенство",
        "legalName": "LLC Event",
        "type": "ORGANIZATION",
        "createdAt": "2025-03-31T14:31:21.917Z",
        "updatedAt": "2025-03-31T14:31:21.917Z"
      },
      "organization": {
        "id": 26,
        "name": "Baza Cocktails",
        "createdAt": "2025-03-31T14:30:34.103Z",
        "updatedAt": "2025-03-31T14:30:34.103Z"
      },
      "prepaymentAccount": {
        "id": 16,
        "name": "Эвока",
        "balance": 1000,
        "organizationId": 26,
        "type": "BANK",
        "createdAt": "2025-03-31T14:30:34.106Z",
        "updatedAt": "2025-03-31T14:30:34.106Z"
      },
      "postpaymentAccount": {
        "id": 16,
        "name": "Эвока",
        "balance": 1000,
        "organizationId": 26,
        "type": "BANK",
        "createdAt": "2025-03-31T14:30:34.106Z",
        "updatedAt": "2025-03-31T14:30:34.106Z"
      }
    }
  ]
}
Modified at 2025-04-02 17:05:58
Previous
Check
Next
Create
Built with