GET api/v1/exports?limit={limit}
Get all the exports available for the current user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| limit | integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
ExportSettingDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| DateCreated | date |
None. |
|
| Deleted | boolean |
None. |
|
| EndDate | date |
None. |
|
| FailureReason | string |
None. |
|
| Format | string |
None. |
|
| StartDate | date |
None. |
|
| Status | string |
None. |
|
| Links | Collection of LinkDto |
None. |
|
| Actions | Collection of LinkDto |
None. |
|
| TimeTaken | time interval |
None. |
|
| DataPoints | integer |
None. |
|
| OwnerId |
The user who requested the export |
globally unique identifier |
None. |
| DeviceId |
The device/user this export is for. |
globally unique identifier |
None. |
| DeviceIds |
List of deviceId's covered by this export |
Collection of globally unique identifier |
None. |
Response Formats
application/json, text/json, application/senml+json
Sample:
{
"Id": "1a973571-cdfc-4133-ab60-a47d632f93c0",
"DateCreated": "2025-10-28T06:40:11.6928232+00:00",
"Deleted": true,
"EndDate": "2025-10-28T06:40:11.6928232+00:00",
"FailureReason": "sample string 5",
"Format": "sample string 6",
"StartDate": "2025-10-28T06:40:11.6928232+00:00",
"Status": "sample string 8",
"Links": [
{
"Href": "sample string 1",
"Rel": "sample string 2",
"Action": "sample string 3"
},
{
"Href": "sample string 1",
"Rel": "sample string 2",
"Action": "sample string 3"
}
],
"Actions": [
{
"Href": "sample string 1",
"Rel": "sample string 2",
"Action": "sample string 3"
},
{
"Href": "sample string 1",
"Rel": "sample string 2",
"Action": "sample string 3"
}
],
"TimeTaken": "00:00:00.1234567",
"DataPoints": 10,
"OwnerId": "12b05458-00e6-4a66-b25a-72a5fb29a079",
"DeviceId": "35b7bb1d-b477-4653-9e3d-e4d20c5089ec",
"DeviceIds": [
"6d50bc93-b515-4f8a-adbd-1b009eef41a0",
"74ea2dd6-bf23-4bba-b994-481eb5995148"
]
}
application/xml, text/xml
Sample:
<ExportSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.ExportMeasurements">
<Actions xmlns:d2p1="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Shared">
<d2p1:LinkViewModel>
<d2p1:Action>sample string 3</d2p1:Action>
<d2p1:Href>sample string 1</d2p1:Href>
<d2p1:Rel>sample string 2</d2p1:Rel>
</d2p1:LinkViewModel>
<d2p1:LinkViewModel>
<d2p1:Action>sample string 3</d2p1:Action>
<d2p1:Href>sample string 1</d2p1:Href>
<d2p1:Rel>sample string 2</d2p1:Rel>
</d2p1:LinkViewModel>
</Actions>
<DataPoints>10</DataPoints>
<DateCreated>2025-10-28T06:40:11.6928232+00:00</DateCreated>
<Deleted>true</Deleted>
<DeviceId>35b7bb1d-b477-4653-9e3d-e4d20c5089ec</DeviceId>
<DeviceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>6d50bc93-b515-4f8a-adbd-1b009eef41a0</d2p1:guid>
<d2p1:guid>74ea2dd6-bf23-4bba-b994-481eb5995148</d2p1:guid>
</DeviceIds>
<EndDate>2025-10-28T06:40:11.6928232+00:00</EndDate>
<FailureReason>sample string 5</FailureReason>
<Format>sample string 6</Format>
<Id>1a973571-cdfc-4133-ab60-a47d632f93c0</Id>
<Links xmlns:d2p1="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Shared">
<d2p1:LinkViewModel>
<d2p1:Action>sample string 3</d2p1:Action>
<d2p1:Href>sample string 1</d2p1:Href>
<d2p1:Rel>sample string 2</d2p1:Rel>
</d2p1:LinkViewModel>
<d2p1:LinkViewModel>
<d2p1:Action>sample string 3</d2p1:Action>
<d2p1:Href>sample string 1</d2p1:Href>
<d2p1:Rel>sample string 2</d2p1:Rel>
</d2p1:LinkViewModel>
</Links>
<OwnerId>12b05458-00e6-4a66-b25a-72a5fb29a079</OwnerId>
<StartDate>2025-10-28T06:40:11.6928232+00:00</StartDate>
<Status>sample string 8</Status>
<TimeTaken>PT0.1234567S</TimeTaken>
</ExportSettingDto>