latestSwagger 2.02026-08-20196638916.1 KB

23d8982b533d

Finance Management.Budgets
ENTERPRISE

Get budget transactions

List all transactions for the specified budget within the start and end date.

get/api/v1/budgets/{id}/transactions

Path parameters

idstring required

Budget id

Query parameters

startinteger required

Query start date expressed as UTC epoch timestamp in milliseconds.

endinteger required

Query end date expressed as UTC epoch timestamp in milliseconds.

Response

A Successful response

Example response

{
  "transactions": [
    {
      "accountId": "325ee4ccf579450ca59d89ee54fa7e40",
      "amount": {
        "currencyCode": "EUR",
        "scale": 2,
        "unscaledValue": 1050
      },
      "categoryCode": "expenses:food.coffee",
      "date": "1549976786000",
      "description": "Monmouth Coffee Company",
      "dispensableAmount": {
        "currencyCode": "EUR",
        "scale": 2,
        "unscaledValue": 1050
      },
      "id": "e2b746ed27c542ce846a8d693474df21",
      "pending": true
    }
  ]
}