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

Delete

DELETE
/api/v1/transaction/{id}
Removes the transaction identified by its unique ID from the system, keeping the financial records accurate and up-to-date. This endpoint is essential for eliminating obsolete or erroneous entries.

Request

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

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/api/v1/transaction/19' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "data": {
    "id": 18,
    "realizationDate": "2025-01-01T00:00:00.000Z",
    "serviceId": 19,
    "counterpartyId": 18,
    "prepaymentAmount": 1000,
    "prepaymentDate": "2025-01-31T00:00:00.000Z",
    "prepaymentAccountId": 16,
    "postpaymentAmount": 1500,
    "postpaymentDate": "2025-01-31T00:00:00.000Z",
    "postpaymentAccountId": 16,
    "organizationId": 26,
    "type": "REVENUE",
    "createdAt": "2025-04-01T19:46:31.290Z",
    "updatedAt": "2025-04-01T19:46:31.290Z"
  }
}
Modified at 2025-04-02 17:06:01
Previous
Create
Next
Info
Built with