create_mileage
Create mileage entries for business travel by specifying distance, date, employee, and project details to track travel expenses in Simplicate.
Instructions
Create mileage entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | ||
distance | Yes | ||
employee_id | No | ||
project_id | No |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"type": "string"
},
"distance": {
"type": "number"
},
"employee_id": {
"type": "string"
},
"project_id": {
"type": "string"
}
},
"required": [
"distance",
"date"
],
"type": "object"
}