POST
Ticket.AutomationToggle
Toggle is_active on a ticket_automation row (dashboard Ticket automation enable/disable). Send is_active to set explicitly; omit to flip current value. Requires manager permission.
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Runs the Ticket.AutomationToggle function and returns JSON.
Push Service
No push is sent because this function only reads data or returns helper information.
Automation
No automation is run for this function.
Special Instructions
- Requires manager permission.
- Uses ticket_automation, not AutomationEvents Activate/Disable.
- Omit is_active to flip; send is_active=0|1 to set explicitly.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
idpost | int | 3 | Automation rule id. Aliases: data_id, rule_id, automation_id. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
is_activepost | int | 1 | Set active state (0/1). Omit to toggle. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Ticket.AutomationToggle",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"id": "3"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Ticket.AutomationToggle",
"url_domain": "https:\/\/{domain}\/app\/Ticket.AutomationToggle"
}Endpoint
POST /app/Ticket.AutomationToggle
POST https://{user}.bull36.com/app/Ticket.AutomationToggle
POST https://{domain}/app/Ticket.AutomationToggleSample Output
{
"success": 1,
"message": "Success",
"id": 3,
"is_active": 0
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ id: '3' });
const res = await fetch('/app/Ticket.AutomationToggle', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Automation not found"
}