v1
latestOpenAPI 3.1.02026-07-242735131.1 MBExpenses
Create expense
Creates an approved expense
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage expenses (employment_payments) | - | Manage expenses (expense:write) |
post/v1/expenses
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.
Request body
Example request
{
"amount": 8000,
"currency": "EUR",
"employment_id": "d4ebc714-4950-47a9-a464-28e1f1ab2a90",
"expense_category_slug": "uuid-tech-equipment-slug",
"expense_date": "2020-12-11",
"receipt": {
"content": "UGVyaW9kIEVuZCBEYXRlLFBheSBEYXRlLEVtcG...5jZSBPZiBSZXNpZGVuYdXJyZW50LEFsbG93",
"name": "receipt.pdf"
},
"reviewed_at": "2021-07-15T18:18:17Z",
"reviewer_id": "14c14128-f5f4-475a-8ec0-6329b4832a61",
"tax_amount": 0,
"timezone": "Etc/UTC",
"title": "new keyboard"
}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"
}
}
}