v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Transaction types

Update transaction type

Updates a transaction type description, given the transaction type ID.

patch/v1/transaction-types/{transactionTypeId}

Path parameters

transactionTypeIdinteger required

Transaction type ID.

Request body

descriptionstring required

Transaction type description.

Example request

{
  "description": "Payment"
}

Response

OK

transaction_type_idinteger required

Transaction type ID. Certain IDs are reserved by the platform and cannot be used.

descriptionstring required

Transaction type description

creditboolean required

Indicates whether the transaction type is credit (true) or debit (false).

posted_transactionboolean required

Indicates whether transactions are posted on statements (true) or not (false). Set to false for zero balance integrations.

Example response

{
  "transaction_type_id": 7001,
  "description": "Payment",
  "credit": true,
  "posted_transaction": true
}