Create Expense Entry
POSThttps://secure.fleetio.com/api/v1/expense_entries
Creates a new Expense Entry
Request
- application/json
Body
Possible values: >= 1
Possible values: >= 1
Possible values: >= 1
The total amount of this Expense Entry, in cents.
Date and time of the expense. We recommend using ISO-8601 formatted dates to avoid ambiguity.
2023-03-14T13:46:27-06:00
Additional comments.
*Full details on working with Custom Fields here.
documents_attributes object[]
images_attributes object[]
Responses
- 201
- 401
- 422
- 500
OK
Response Headers
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 1
The date and time at which this record was created.
2023-03-14T13:46:27-06:00
The date and time at which this record was most recently updated.
2023-03-14T13:46:27-06:00
The ID of the Account
that owns this Expense Entry.
Additional comments.
Possible values: >= 1
Date and time of the expense.
2023-03-14T13:46:27-06:00
The ID of the associated Vehicle
.
Possible values: >= 1
*Full details on working with Custom Fields here.
The ID of the associated Acquisition
, if applicable.
The billable type, if applicable.
Possible values: [Acquisition
]
Whether or not this record is being watched in bulk.
The number of Comments
on this record.
Possible values: >= 0
The number of documents attached to this record.
Possible values: >= 0
The number of images attached to this record.
Possible values: >= 0
The ID of the Import
that created this record, if applicable.
Whether or not this record is sample data.
The ID of the associated recurring Expense Entry, if applicable.
Whether or not to skip automatic watchers callbacks.
The total amount of the expense.
The date and time the associated Vehicle
was archived, if applicable.
Options related to watching the record.
{
"id": 0,
"created_at": "2023-03-14T13:46:27-06:00",
"updated_at": "2023-03-14T13:46:27-06:00",
"account_id": 0,
"notes": "string",
"expense_entry_type_id": 0,
"occurred_at": "2023-03-14T13:46:27-06:00",
"vehicle_id": 0,
"vendor_id": 0,
"custom_fields": {},
"billable_id": 0,
"billable_type": "Acquisition",
"bulk_watch_record": true,
"comments_count": 0,
"documents_count": 0,
"images_count": 0,
"import_id": 0,
"is_sample": true,
"recurring_expense_entry_id": 0,
"skip_automatic_watchers_callbacks": true,
"total_amount_cents": "string",
"vehicle_archived_at": "2024-07-29T15:51:28.071Z",
"watchable_options": {}
}
Request could not be authenticated
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Unprocessable Entity
- application/json
- Schema
- Example (auto)
- Example
Schema
errors object
{
"errors": {}
}
{
"errors": {
"field1": [
"error1",
"error2"
],
"field2": [
"error3"
]
}
}
Something unexpected happened
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: Prefix the value with "Token", for example: "Token 76cbe06c49a64". You can generate a new API key [here](https://secure.fleetio.com/api_keys).
name: Account-Tokentype: apiKeyin: headerdescription: You can find your Account-Token [here](https://secure.fleetio.com/api_keys)
- curl
- ruby
- python
- csharp
- go
- java
- nodejs
- php
- CURL
curl -L 'https://secure.fleetio.com/api/v1/expense_entries' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Token <Authorization>' \
-H 'Account-Token: <Authorization>' \
-d '{
"vehicle_id": 0,
"expense_entry_type_id": 0,
"vendor_id": 0,
"total_amount_cents": 0,
"occurred_at": "2023-03-14T13:46:27-06:00",
"notes": "string",
"custom_fields": {},
"documents_attributes": [
{
"name": "string",
"file_url": "string",
"file_mime_type": "string",
"file_name": "string",
"file_size": 0
}
],
"images_attributes": [
{
"name": "string",
"file_url": "string",
"file_mime_type": "string",
"file_name": "string",
"file_size": 0
}
]
}'