create_organization
Create a new organization in Simplicate by providing the organization name and optional contact details like email, phone, and website.
Instructions
Create a new organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | |||
name | Yes | Organization name | |
phone | No | ||
website | No |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"type": "string"
},
"name": {
"description": "Organization name",
"type": "string"
},
"phone": {
"type": "string"
},
"website": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}