Skip to main content
GET
/
v1
/
transaction_statuses
List transaction statuses
curl --request GET \
  --url https://incoming.qomon.app/v1/transaction_statuses \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": [
    {
      "id": 123,
      "CreatedAt": "2023-11-07T05:31:56Z",
      "UpdatedAt": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "color": "<string>",
      "kind": "<string>",
      "archived": true
    }
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://qomon-86428773.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

Number of items to query (for pagination)

offset
integer

Offset of items to query (for pagination)

Response

Successful operation

status
string
Example:

"success"

data
object[]
total
integer
Last modified on May 20, 2026