Read transaction types

GET /transactiontypes

Read a list of available transaction types within 24SevenOffice accounting module.

Headers

Responses

  • Hide headers attributes Show headers attributes
    Hide response attributes Show response attributes object

    Information about a single transaction type within the 24SevenOffice accounting module.

    • id number

      A unique identifier for the transaction type within 24SevenOffice accounting module.

    • number number

      A unique number representing the transaction type.

    • name string

      A human-readable name of the transaction type.

    Hide response attributes Show response attributes object

    Information about a single transaction type within the 24SevenOffice accounting module.

    • id number

      A unique identifier for the transaction type within 24SevenOffice accounting module.

    • number number

      A unique number representing the transaction type.

    • name string

      A human-readable name of the transaction type.

GET /transactiontypes
curl \
 -X GET https://rest.api.24sevenoffice.com/v1/transactiontypes \
 -H "Authorization: string"
Response examples (200)
[
  {
    "id": 5001,
    "name": "Sale",
    "number": 1
  },
  {
    "id": 5002,
    "name": "Purchase",
    "number": 2
  },
  {
    "id": 5003,
    "name": "Expense",
    "number": 3
  }
]
Response examples (200)
[
  {
    "id": 5001,
    "name": "Sale",
    "number": 1
  },
  {
    "id": 5002,
    "name": "Purchase",
    "number": 2
  },
  {
    "id": 5003,
    "name": "Expense",
    "number": 3
  }
]