POST
Recordings.ScreenList
Return screen recordings attached to one mission as JSON. Use it in a mission view when the UI needs the saved screen-recording videos without HTML markup.
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 Recordings.ScreenList 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
- 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 |
|---|---|---|---|
mission_idpost | int | 500 | Mission id. The user must have permission to see this mission. id is also accepted. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
startpost | int | 0 | First screen-recording row offset for paging. |
limitpost | int | 25 | Maximum rows to return. Values above 25 are capped to 25. |
lengthpost | int | 25 | DataTables page-size alias for limit. Values above 25 are capped to 25. |
per_pagepost | int | 25 | Alternative page-size alias. Values above 25 are capped to 25. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Recordings.ScreenList",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"mission_id": "500"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Recordings.ScreenList",
"url_domain": "https:\/\/{domain}\/app\/Recordings.ScreenList"
}Endpoint
POST /app/Recordings.ScreenList
POST https://{user}.bull36.com/app/Recordings.ScreenList
POST https://{domain}/app/Recordings.ScreenListSample Output
{
"success": 1,
"mission_id": 500,
"count": 1,
"start": 0,
"limit": 25,
"data": [
{
"recording_index": 0,
"path": "https:\/\/files.bull36.com\/screen\/video.mp4",
"time": "2026-07-19 10:00:00",
"type": "video\/mp4"
}
]
}Count Only
Use the matching count route with the same filters when the UI only needs total rows for paging.
{
"url": "\/app\/Recordings.ScreenList",
"url_user": "https:\/\/{user}.bull36.com\/app\/Recordings.ScreenList",
"url_domain": "https:\/\/{domain}\/app\/Recordings.ScreenList",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"mission_id": "500"
},
"sample_output": {
"success": 1,
"count": 123
},
"notes": {
"count": "Number of screen recordings attached to the mission before paging.",
"max_limit": 25
}
}Count JavaScript
const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('mission_id', '500');
const res = await fetch('https://{domain}/app/Recordings.ScreenList', {
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({ mission_id: '500' });
const res = await fetch('/app/Recordings.ScreenList', { method: 'POST', headers: { Authorization: `Bearer ${token}` }, body });
const data = await res.json();
console.log(data.data);Error Example
{
"success": "0",
"message": "Missing required parameter: mission_id"
}