create_cost
Create cost entries in Simplicate by specifying description, amount, project, and date to track business expenses within projects.
Instructions
Create a cost entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | ||
date | No | ||
description | Yes | ||
project_id | No |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"type": "number"
},
"date": {
"type": "string"
},
"description": {
"type": "string"
},
"project_id": {
"type": "string"
}
},
"required": [
"description",
"amount"
],
"type": "object"
}