External DocumentationTo learn more, visit the PlexTrac documentation.
Actions
List Reports
Retrieve a list of reports for a tenant.

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 By | Choose to filter results by the following fields. |
| Filter Value | The Value to filter the results by. |
| Limit | The maximal number of returned results. |
| Offset | Number of the results to initially skip. |
{
"status": "success",
"data": [
{
"client_id": 4155,
"id": 500004,
"name": "test",
"status": "Draft",
"findings": 1
}
],
"meta": {
"pagination": {
"offset": 0,
"limit": 25,
"total": 1
},
"sort": [
{
"by": "name",
"order": "ASC"
}
],
"filters": [
{
"by": "name",
"value": "test"
},
{
"by": "tags",
"value": [
"test"
]
},
{
"by": "clients",
"value": [
4155
]
}
]
}
}
Was this page helpful?