Querying ListExports API

Query Request

The ListExports query retrieves a list of available export records for a specific customer for a particular month and year, filtered by the type. This query helps in fetching detailed information about the exports for the specified customer and time period. Argument: The listExports query takes four arguments: customer, year, month, and type (e.g., “telemetry”). These parameters specify the customer and the time period for which the export data is being requested.

Query Response

The above query results in a successful response with a status code of 200. It includes two telemetry export records for the customer on a particular month and year.

RESPONSE
                    
                      {
"data": {
"listExports": {
"statusCode": 200,
"exports": [
{
"customer": "cib",
"day": "02",
"format": "parquet",
"hour": "09",
"month": "05",
"type": "telemetry",
"year": "2023"
},
{
"customer": "cib",
"day": "02",
"format": "parquet",
"hour": "10",
"month": "05",
"type": "telemetry",
"year": "2023"
}
]
}
}
}