POST
Ticket.ShowAllTickets
Toggle whether a team member can see all account tickets (user_detail_2.show_all_user_tickets), same as the dashboard ticket team members "show all tickets" switch. Requires manager permission. user_id is required.
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.ShowAllTickets 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.
- user_id is the team member being updated (aliases: member_id, team_member_id).
- data_value / show_all_user_tickets: 1 enable, 0 disable (defaults to 0 when omitted).
Required Parameters
No body parameters are required for this function.
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
data_valuepost | int | 1 | 1 to enable, 0 to disable. Alias: show_all_user_tickets. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Ticket.ShowAllTickets",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"data_value": "1"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Ticket.ShowAllTickets",
"url_domain": "https:\/\/{domain}\/app\/Ticket.ShowAllTickets"
}Endpoint
POST /app/Ticket.ShowAllTickets
POST https://{user}.bull36.com/app/Ticket.ShowAllTickets
POST https://{domain}/app/Ticket.ShowAllTicketsSample Output
{
"success": 1,
"message": "Success",
"user_id": 47,
"show_all_user_tickets": 1
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ user_id: '47', data_value: '1' });
const res = await fetch('/app/Ticket.ShowAllTickets', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Missing required parameter: user_id"
}