update_organization_deployment_token
Modify the deployment token for a specific organization using the ID and new token value to ensure secure and updated access within the Binalyze AIR MCP Server.
Instructions
Update the deployment token for a specific organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentToken | Yes | New deployment token for the organization | |
id | Yes | The ID of the organization to update |
Input Schema (JSON Schema)
{
"properties": {
"deploymentToken": {
"description": "New deployment token for the organization",
"type": "string"
},
"id": {
"description": "The ID of the organization to update",
"type": "number"
}
},
"required": [
"id",
"deploymentToken"
],
"type": "object"
}