v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Expenses

Show expense

Shows a single expense record

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage expenses (employment_payments)View expenses (expense:read)Manage expenses (expense:write)
get/v1/expenses/{id}

Path parameters

idstring required

Expense ID

Headers

Authorizationstring required

Requires a Company-scoped access token obtained through the Authorization Code flow or the Refresh Token flow.

The refresh token needs to have been obtained through the Authorization Code flow.

Response

Success

Example response

{
  "data": {
    "expense": {
      "amount": 1000,
      "category": "tech_equipment",
      "converted_amount": 1000,
      "converted_currency": {
        "code": "CZK",
        "name": "Czech Koruna",
        "symbol": "Kč"
      },
      "converted_tax_amount": 500,
      "currency": {
        "code": "CZK",
        "name": "Czech Koruna",
        "symbol": "Kč"
      },
      "employment_id": "ba9ead59-e471-4043-a7ea-07dbb105e72c",
      "expense_category": {
        "code": "tech.equipment",
        "slug": "uuid-tech-equipment-slug",
        "title": "Technology Equipment"
      },
      "expense_date": "2021-09-03",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "receipts": [
        {
          "id": "9880b711-file-id-ecf8f551bd78",
          "inserted_at": "2021-07-15T18:18:17Z",
          "name": "id.pdf",
          "sub_type": "personal_id",
          "type": "id"
        }
      ],
      "status": "pending",
      "tax_amount": 500,
      "title": "New desk"
    }
  }
}