/accounting/v1.0/transactions

Supported fields for filtering:

  • id
  • internal_code
  • custom_code
  • transaction_datetime
  • customer_id
  • source_id
  • source_kind
  • external_relation_id
  • external_relation_kind
  • origin_id
  • routed_from
  • created_at
  • parent_id
  • folio_id
  • custom_code
  • account_category
  • chart_of_account_type

Supported fields for sorting:

  • id
  • internal_code
  • transaction_datetime
  • source_id
  • created_at

Example request:

  {
    "filters": {
      "and": [
        {
          "operator": "greater_than_or_equal",
          "value": "2019-01-11t08:59:00z",
          "field": "transaction_datetime"
        },
        {
          "or": [
            {
              "operator": "equals",
              "value": "1",
              "field": "customer_id"
            },
            {
              "operator": "equals",
              "value": "2",
              "field": "customer_id"
            },
            {
              "operator": "equals",
              "value": "3",
              "field": "customer_id"
            }
          ]
        }
      ]
    },
    "pageToken": null,
    "limit": 10,
    "sort": [
      {
        "field": "transaction_datetime",
        "direction": "asc"
      }
    ]
  }
Language
Credentials
Bearer
JWT
URL
Click Try It! to start a request and see the response here!