create_contract
Generate new contracts in Simplicate by specifying organization details and contract dates to establish business agreements.
Instructions
Create a new contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
organization_id | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"type": "string"
},
"organization_id": {
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"organization_id",
"start_date"
],
"type": "object"
}