create_case
Initiate a new case in the Binalyze AIR MCP Server by specifying a name, owner, and optional parameters like organization ID, visibility, and assigned users.
Instructions
Create a new case in the system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignedUserIds | No | Array of user IDs to assign to the case. Defaults to empty array. | |
name | Yes | Name of the case | |
organizationId | No | Organization ID to create the case in. Defaults to 0. | |
ownerUserId | Yes | User ID of the case owner | |
visibility | No | Visibility of the case. Defaults to "public-to-organization" |
Input Schema (JSON Schema)
{
"properties": {
"assignedUserIds": {
"description": "Array of user IDs to assign to the case. Defaults to empty array.",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Name of the case",
"type": "string"
},
"organizationId": {
"description": "Organization ID to create the case in. Defaults to 0.",
"type": "number"
},
"ownerUserId": {
"description": "User ID of the case owner",
"type": "string"
},
"visibility": {
"description": "Visibility of the case. Defaults to \"public-to-organization\"",
"type": "string"
}
},
"required": [
"name",
"ownerUserId"
],
"type": "object"
}