POST
Suppliers.Get
Return one supplier by id from the suppliers table (account-owned or shared user_id=0).
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
- Returns Suppliers information as JSON for the UI.
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
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
supplier_idpost | int | 8 | Supplier id. Aliases: suppliers_id, id, update_id, data_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\/Suppliers.Get",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"supplier_id": "8"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Suppliers.Get",
"url_domain": "https:\/\/{domain}\/app\/Suppliers.Get"
}Endpoint
POST /app/Suppliers.Get
POST https://{user}.bull36.com/app/Suppliers.Get
POST https://{domain}/app/Suppliers.GetSample Output
{
"success": 1,
"data": {
"id": 8,
"supplier_id": 8,
"suppliers_id": 8,
"name": "Acme Supply",
"supplier_name": "Acme Supply",
"phone": "0500000000",
"email": "[email protected]",
"company_id": "123456789",
"contact_name": "Dana",
"language": "en",
"user_id": 14
}
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ supplier_id: '8' });
const res = await fetch('/app/Suppliers.Get', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());Error Example
{
"success": 0,
"message": "Supplier was not found."
}