External DocumentationTo learn more, visit the Plutora documentation.
Actions
List Bookings
Get a list of bookings.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Filter | A query text to filter the results by, following the pattern: [Field] [Operator] [Value].Multiple filters can be combined with commas, which act as logical AND. String values must be enclosed in single quotes. Common operators include: * eq — equal to* ne — not equal to* lt — less than* le — less than or equal to* gt — greater than* ge — greater than or equal to* lk — like (wildcard search, supports %)Example: name lk 'Build%' , status eq 'Active' - This will return builds with names starting with Build that are in Active status. |
| Page Num | The page to return results from. Starting from 0. |
| Records Per Page | The maximum number of results to return per page. |
| Return All Pages | Automatically fetch all resources, page by page. |
{
"resultSet": [
{
"id": "00000000-0000-0000-0000-000000000000",
"environmentId": "00000000-0000-0000-0000-000000000000",
"isEnvironmentGroup": true,
"releaseId": "00000000-0000-0000-0000-000000000000",
"phaseId": "00000000-0000-0000-0000-000000000000",
"tebrId": "00000000-0000-0000-0000-000000000000",
"startDate": "2025-09-11T12:49:08.855Z",
"endDate": "2025-09-11T12:49:08.855Z",
"status": "string",
"state": "string",
"statusUpdaterId": "00000000-0000-0000-0000-000000000000",
"timeStamp": "2025-09-11T12:49:08.855Z"
}
],
"returnCount": 0,
"totalCount": 0,
"pageNum": 0,
"recordsPerPage": 0
}
Was this page helpful?