create_checklist_task_jwt
Create checklist tasks in IT Glue when the public API lacks a POST endpoint. Uses JWT authentication from a browser session to add tasks to a checklist.
Instructions
Create a new task on a checklist using JWT authentication.
This tool uses JWT authentication (captured from browser session) instead of API key authentication. This is REQUIRED for task creation because IT Glue's public API doesn't expose the checklist_tasks POST endpoint.
If no valid JWT token is cached, this will open a browser window for SAML authentication.
Args: checklist_id: Checklist ID to add the task to (required) name: Task name (required) description: Task description due_date: Due date in ISO format (YYYY-MM-DD) assignee_id: User ID to assign the task to position: Position/order of the task in the list completed: Whether the task is already completed (default: False)
Returns: JSON string with the created task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| due_date | No | ||
| position | No | ||
| completed | No | ||
| assignee_id | No | ||
| description | No | ||
| checklist_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |