POST

Ticket.StockProductStorages

List storage locations and available stock for a product when attaching stock on a ticket (customer-tickets product flow). Used after Ticket.StockProductSearch when has_storage=1.

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.StockProductStorages 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

  • product_id is required. Alias: id.
  • Unknown or other-org product returns success with items=[].
  • stock is available qty (stock − ordered − damaged − move_from_me).
  • Pass chosen storage_id to Ticket.StockProductAdd when the product has storage.

Required Parameters

NameTypeSampleExplanation
product_id
post
int12Product id from StockProductSearch. Alias: 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.StockProductStorages",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "product_id": "12"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Ticket.StockProductStorages",
    "url_domain": "https:\/\/{domain}\/app\/Ticket.StockProductStorages"
}

Endpoint

POST /app/Ticket.StockProductStorages
POST https://{user}.bull36.com/app/Ticket.StockProductStorages
POST https://{domain}/app/Ticket.StockProductStorages

Sample Output

{
    "success": 1,
    "items": [
        {
            "storage_id": 3,
            "name": "Main warehouse",
            "stock": 18
        }
    ]
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ product_id: '12' });
const res = await fetch('/app/Ticket.StockProductStorages', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Missing required parameter: product_id"
}