v1
latestOpenAPI 3.1.02026-07-242735131.1 MBExpenses
Create an expense for the authenticated employee
Creates a new expense record for the current employee.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage expenses (employment_payments) | - | Manage expenses (expense:write) |
post/v1/employee/expenses
Request body
Example request
{
"amount": 8000,
"currency": "EUR",
"expense_category_slug": "uuid-tech-equipment-slug",
"expense_date": "2020-12-11",
"receipt": {
"content": "UGVyaW9kIEVuZCBEYXRlLFBheSBEYXRlLEVtcG...5jZSBPZiBSZXNpZGVuYdXJyZW50LEFsbG93",
"name": "receipt.pdf"
},
"tax_amount": 0,
"timezone": "Etc/UTC",
"title": "new keyboard"
}Response
Created
Example response
{
"data": {
"status": "ok"
}
}