POST
Ticket.StockProductList
List ticket_products rows for a ticket (customer-tickets stock/products panel). Returns qty, storage, and product name for each line.
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.StockProductList 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
- ticket_id is required. Aliases: id, data_id, t_id.
- Ticket must belong to the authenticated org (owner_id).
- Use Ticket.StockProductRemove / Delete with the line id (not product_id) to detach and restore stock.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
ticket_idpost | int | 900 | Ticket id. Aliases: id, data_id, t_id. |
Optional Parameters
No optional body parameters are defined for this function.
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Ticket.StockProductList",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"ticket_id": "900"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Ticket.StockProductList",
"url_domain": "https:\/\/{domain}\/app\/Ticket.StockProductList"
}Endpoint
POST /app/Ticket.StockProductList
POST https://{user}.bull36.com/app/Ticket.StockProductList
POST https://{domain}/app/Ticket.StockProductListSample Output
{
"success": 1,
"count": 1,
"items": [
{
"id": 55,
"product_id": 12,
"product_name": "USB Cable",
"qty": 2,
"storage_id": 3,
"storage_name": "Main warehouse",
"cust_id": 100,
"created_by": 47
}
]
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ ticket_id: '900' });
const res = await fetch('/app/Ticket.StockProductList', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Missing required parameter: ticket_id"
}