create_ticket
Submit support requests to FitSlot by creating tickets with title, description, priority level, and user identification for issue resolution.
Instructions
Create a new support ticket in the FitSlot system
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| description | Yes | ||
| priority | Yes | ||
| userId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"_def": {
"checks": [],
"coerce": false,
"description": "Detailed description of the issue or request",
"typeName": "ZodString"
},
"~standard": {
"vendor": "zod",
"version": 1
}
},
"priority": {
"_def": {
"description": "Priority level of the ticket",
"typeName": "ZodEnum",
"values": [
"low",
"medium",
"high",
"urgent"
]
},
"~standard": {
"vendor": "zod",
"version": 1
}
},
"title": {
"_def": {
"checks": [],
"coerce": false,
"description": "Title of the ticket",
"typeName": "ZodString"
},
"~standard": {
"vendor": "zod",
"version": 1
}
},
"userId": {
"_def": {
"checks": [],
"coerce": false,
"description": "ID of the user creating the ticket",
"typeName": "ZodString"
},
"~standard": {
"vendor": "zod",
"version": 1
}
}
},
"required": [
"title",
"description",
"priority",
"userId"
],
"type": "object"
}