POST
Ticket.StockProductSearch
Search ec_product for the ticket stock/product picker on customer-tickets (not Products.ByCustomer). Matches product_name, product_enname, or product_sku. Empty q returns items=[].
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.StockProductSearch 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
- Dashboard ticket product autocomplete uses this search — it is NOT Products.ByCustomer.
- q is optional. If omitted or blank, response is success with items=[].
- Aliases for q: search, searchh.
- Each item includes has_storage (0/1) so the UI can prompt for storage via Ticket.StockProductStorages.
- Limited to 25 results.
Required Parameters
No body parameters are required for this function.
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
qpost | string | cable | Search text. Aliases: search, searchh. Optional — empty returns items=[]. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Ticket.StockProductSearch",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"q": "cable"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Ticket.StockProductSearch",
"url_domain": "https:\/\/{domain}\/app\/Ticket.StockProductSearch"
}Endpoint
POST /app/Ticket.StockProductSearch
POST https://{user}.bull36.com/app/Ticket.StockProductSearch
POST https://{domain}/app/Ticket.StockProductSearchSample Output
{
"success": 1,
"items": [
{
"id": 12,
"name": "USB Cable",
"has_storage": 1,
"stock": 40
}
]
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ q: 'cable' });
const res = await fetch('/app/Ticket.StockProductSearch', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 1,
"items": []
}