update_organization_by_id
Modify an organization's details in Binalyze AIR by updating its ID, name, contact info, deployment settings, and notes.
Instructions
Update an existing organization by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact | No | Updated contact information for the organization | |
id | Yes | The ID of the organization to update | |
name | No | Updated name of the organization | |
note | No | Additional notes about the organization | |
shareableDeploymentEnabled | No | Whether shareable deployment is enabled |
Input Schema (JSON Schema)
{
"properties": {
"contact": {
"description": "Updated contact information for the organization",
"properties": {
"email": {
"description": "Contact email address",
"type": "string"
},
"mobile": {
"description": "Contact mobile number",
"type": "string"
},
"name": {
"description": "Contact name",
"type": "string"
},
"phone": {
"description": "Contact phone number",
"type": "string"
},
"title": {
"description": "Contact title",
"type": "string"
}
},
"type": "object"
},
"id": {
"description": "The ID of the organization to update",
"type": "number"
},
"name": {
"description": "Updated name of the organization",
"type": "string"
},
"note": {
"description": "Additional notes about the organization",
"type": "string"
},
"shareableDeploymentEnabled": {
"description": "Whether shareable deployment is enabled",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}