create_organization
Create a new organization with customizable details, including name, contact information, and deployment settings, using the Binalyze AIR MCP Server.
Instructions
Create a new organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact | Yes | Contact information for the organization | |
name | Yes | Name of the organization | |
note | No | Additional notes about the organization (optional) | |
shareableDeploymentEnabled | No | Whether shareable deployment is enabled. Defaults to false. |
Input Schema (JSON Schema)
{
"properties": {
"contact": {
"description": "Contact information for the organization",
"properties": {
"email": {
"description": "Contact email address",
"type": "string"
},
"mobile": {
"description": "Contact mobile number (optional)",
"type": "string"
},
"name": {
"description": "Contact name",
"type": "string"
},
"phone": {
"description": "Contact phone number (optional)",
"type": "string"
},
"title": {
"description": "Contact title (optional)",
"type": "string"
}
},
"required": [
"name",
"email"
],
"type": "object"
},
"name": {
"description": "Name of the organization",
"type": "string"
},
"note": {
"description": "Additional notes about the organization (optional)",
"type": "string"
},
"shareableDeploymentEnabled": {
"description": "Whether shareable deployment is enabled. Defaults to false.",
"type": "boolean"
}
},
"required": [
"name",
"contact"
],
"type": "object"
}