Anura Reporting API - Raw Data Endpoints - Table
The Raw Data: Table endpoint will allow you to retrieve, or search, a list of self-generated reports applicable to the supplied POST parameters.
Method |
URL |
POST |
https://api.anura.io/v1/raw/table |
Parameters
Required |
Type |
Description |
Note |
token |
string |
The token string you have been issued to connect to the Anura Reporting API. |
|
Optional |
Type |
Description |
Note |
search |
string |
A value to which results will be limited. |
Results are returned based on a broad match of the declared value. |
startswith |
boolean |
Set true to return only results starting with the search value. |
False by default. |
sort |
string |
The order in which results will be returned. |
Up to 3 valid comma separated sortings may be requested. Format: column:asc or column:desc. "3:desc" is returned by default. |
page |
integer |
The page of results to be returned. |
Page 1 is returned by default. |
limit |
integer |
The number of returned results. |
20 results are returned by default. 1,000 results max. |
processing_usage |
boolean |
Set true to return a detailed breakdown of account processing usage. |
False by default. Admin users only. |
Example Response
{
"processing": {
"limits": {
"minutes_total": 900,
"api_concurrent": 1,
"dashboard_concurrent": 2,
"minutes_available": 888
}
},
"table": {
"rows": [
{
"id": "kuDZdF6v",
"name": "Anura+Raw+Response+Report+20220924",
"instance": "yourInstanceName",
"type": "Response",
"requested": "2022-09-24T13:22:31+00:00",
"created": null,
"failed": null,
"timed_out": null,
"cancelled": null,
"status": "In Progress",
"expires": "2022-10-25T00:00:00+00:00"
},
{
"id": "JpTxDnu4",
"name": "Anura+Raw+Request+Report+20220924",
"instance": "yourInstanceName",
"type": "Request",
"requested": "2022-09-24T13:16:19+00:00",
"created": "2022-09-24T13:17:28+00:00",
"failed": null,
"timed_out": null,
"cancelled": null,
"status": "Ready",
"expires": "2022-10-25T00:00:00+00:00"
}
]
},
"query": {
"search": false,
"sort": "3:desc",
"page": 1,
"limit": 20,
"results": 2,
"pages": 1,
"processing_usage": false
}
}