POST

Apps.List

List uploaded static apps for this account. Use this to show the user which apps are active, failed scan, disabled, or removed.

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 rows as JSON.
  • Supports the documented filters and paging fields.
  • List responses are capped at 25 rows per call.

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.
  • For paging, do not request more than 25 rows.
  • For total rows, call the matching Count function with the same filters.

Required Parameters

No body parameters are required for this function.

Optional Parameters

NameTypeSampleWhat it gives
start
post
int0Paging offset.
limit
post
int25Maximum rows to return. Values above 25 are capped.
search
post
stringsampleSearch by app name or app slug.
status
post
stringactiveFilter by status: pending_scan, active, failed_scan, disabled, removed.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Apps.List",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "limit": "25",
        "status": "active"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Apps.List",
    "url_domain": "https:\/\/{domain}\/app\/Apps.List"
}

Endpoint

POST /app/Apps.List
POST https://{user}.bull36.com/app/Apps.List
POST https://{domain}/app/Apps.List

Sample Output

{
    "success": 1,
    "count": 1,
    "data": [
        {
            "id": 12,
            "app_name": "Sample App",
            "app_slug": "sampleapp",
            "status": "active",
            "public_url": "https:\/\/apps.biz1.co.il\/eli\/sampleapp\/",
            "version": 1
        }
    ]
}

Count Only

Use the matching count route with the same filters when the UI only needs total rows for paging.

{
    "url": "\/app\/Apps.Count",
    "url_user": "https:\/\/{user}.bull36.com\/app\/Apps.Count",
    "url_domain": "https:\/\/{domain}\/app\/Apps.Count",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "status": "active"
    },
    "sample_output": {
        "success": 1,
        "count": 123
    },
    "notes": {
        "count": "Apps.List returns count for the matching filters."
    }
}

Count JavaScript

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('status', 'active');

const res = await fetch('https://{domain}/app/Apps.Count', {
  method: 'POST',
  headers: { Authorization: `Bearer ${token}` },
  body
});
const data = await res.json();
console.log(data.count);

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ limit: '25', status: 'active' });
const res = await fetch('/app/Apps.List', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data.data);

Error Example

{
    "success": "0",
    "error": "bearer_token_required",
    "message": "Authorization bearer token is required. Send header: Authorization: Bearer YOUR TOKEN"
}