SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Expenses

Get expense categories

GET/api/v1/expenses/meta

Returns the list of valid expense categories.

Requires Authorization
ADMIN, ACCOUNTANT only
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/expenses/meta \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "categories": [
      "OPERATIONS",
      "MARKETING",
      "PAYROLL",
      "LEGAL",
      "TRAVEL",
      "UTILITIES",
      "EQUIPMENT",
      "OTHER"
    ]
  }
}