POST
Apps.Get
Get one uploaded app record by app_slug. Use this after selecting an app from Apps.List or after upload/update polling.
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 Apps 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 |
|---|---|---|---|
app_slugpost | string | sampleapp | Clean app folder name. Aliases: slug, app_name, name. |
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\/Apps.Get",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"app_slug": "sampleapp"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Apps.Get",
"url_domain": "https:\/\/{domain}\/app\/Apps.Get"
}Endpoint
POST /app/Apps.Get
POST https://{user}.bull36.com/app/Apps.Get
POST https://{domain}/app/Apps.GetSample Output
{
"success": 1,
"data": {
"id": 12,
"app_name": "Sample App",
"app_slug": "sampleapp",
"status": "active",
"public_url": "https:\/\/apps.biz1.co.il\/eli\/sampleapp\/",
"version": 1
}
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({ app_slug: 'sampleapp' });
const res = await fetch('/app/Apps.Get', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data.data);Error Example
{
"success": 0,
"error": "not_found",
"message": "App was not found."
}