Update tax declaration status for a crypto deposit transaction

This endpoint allows updating the tax declaration status of a specific deposit transaction. It enables users to declare tax-related details about crypto deposits, required for compliance with regulatory reporting standards.

SecuritybearerAuth
Request
path Parameters
transaction-ID
required
string <uuid>

Unique identifier (UUID) of the transaction to update.

header Parameters
bp-user-id
required
string <uuid>

Unique identifier (UUID) for the user

Example: 12312312-2be6-4522-977e-ea4d92c45e86
Request Body schema: application/json

Object containing details for updating the tax declaration status of a specific transaction.

currency_code
string

The currency code (e.g., EUR, USD) used for the declarations, for the amounts being declared.

Array of objects

A list of declarations providing details about the acquisition and price of the asset for the deposited amount.

Responses
204

Tax declaration status successfully updated for the transaction.

400

Bad Request - Invalid parameters were provided in the request.

401

Unauthorized

403

Forbidden

404

Not Found

409

Conflict

422

Unprocessable Entity

500

Internal Error

503

Service unavailable

patch/v1/crypto-transfers/transactions/{transaction-ID}
Request samples
application/json
{
  • "currency_code": "EUR",
  • "declarations": [
    ]
}
Response samples
application/json
{
  • "errors": [
    ]
}