List exports
GET/exports
List exports.
Authorization Action:
exporter:exports:list
Request
Query Parameters
ids string[]
status string[]
Possible values: [notProcessed, inProgress, failed, done, expired]
type string
Possible values: [recurring, oneTime]
tagLabels string[]
tagLabelValues string[]
from date-time
to date-time
page number
Possible values: >= 0
Default value:
0pageSize number
Possible values: >= 0
Default value:
1000sort string
Possible values: Value must match regular expression sortingStringRegex
Default value:
createdAt:descResponses
- 200
- 400
- application/json
- Schema
- Example (auto)
Schema
results object[]required
totalnumberrequired
{
"results": [
{
"format": {
"filename": "string",
"extension": "csv",
"columns": [
{
"id": "string",
"label": "string"
}
],
"timezone": "utc",
"template": "tabular",
"csvDelimiter": "string"
},
"type": "recurring",
"items": [
{
"params": {
"target": {
"value": "string",
"label": "string"
},
"channelId": "0115c85d-ef3e-4de9-9732-d0c5c4f2c482",
"subtopic": "events.data",
"from": 0,
"to": 0,
"period": "P1Y6M4DT12H30M5S",
"decimation": {
"ds": "15m",
"dsf": "avg"
},
"transform": "delta",
"outputFormat": "long"
},
"filename": "string"
}
],
"periodicity": "P1Y6M4DT12H30M5S",
"periodStart": 0,
"notification": {
"messages": [
{
"target": "string",
"policy": "onSuccess",
"medium": "email",
"title": "string",
"text": "string"
}
]
},
"tags": [
{
"label": "string",
"labelValue": "string",
"metadata": {}
}
],
"id": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"deletedAt": "2024-07-29T15:51:28.071Z"
}
],
"total": 0
}
Missing user identity id
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://connhex.com/exports");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());