TAG LINE
TAG LINE
SMALL TITLE

Data Export

(API Version v10)


What can you do with DataExport?


Properties

Property Details
identity
READ-ONLY
"identity": 18
Type: Number
This is the unique numeric identifier for the DataExport
name
"name": "Hello World"
Type: String
isActive
"isActive": true
Type: Boolean
storageLocationId
"storageLocationId": 6
Type: Number
Unique identifier for the associated StorageLocation object.
storageLocationName
"storageLocationName": "Sample Name"
Type: String
The name of the object associated with the storageLocationId property.
dataExportTypeId
"dataExportTypeId": 6
Type: Number
Unique identifier for the associated DataExportType object.
dataExportTypeName
"dataExportTypeName": "Sample Name"
Type: String
The name of the object associated with the dataExportTypeId property.
config
"config": "Hello World"
Type: String


End Points

GETDataExport/
Retrieve all of the DataExport objects.
Retrieve all of the DataExport objects.
GET DataExport/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Sample Text Data",
            "isActive": true,
            "storageLocationId": 20,
            "storageLocationName": "Sample Text Data",
            "dataExportTypeId": 21,
            "dataExportTypeName": "Sample Text Data",
            "config": "Sample Text Data"
        }
    ]
}
GETDataExport/Paged
Retrieve all of the DataExport objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the DataExport objects in a paged fashion.
GET DataExport/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Sample Text Data",
                "isActive": true,
                "storageLocationId": 25,
                "storageLocationName": "Sample Text Data",
                "dataExportTypeId": 0,
                "dataExportTypeName": "Sample Text Data",
                "config": "Sample Text Data"
            }
        ]
    }
}
GETDataExport/{id}
Retrieve an instance of the DataExport object by its ID.
{id}Unique identifier for the DataExport object.
Retrieve an instance of the DataExport object by its ID.
GET DataExport/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Sample Text Data",
        "isActive": true,
        "storageLocationId": 9,
        "storageLocationName": "Sample Text Data",
        "dataExportTypeId": 12,
        "dataExportTypeName": "Sample Text Data",
        "config": "Sample Text Data"
    }
}
POSTDataExport/{id}/TriggerExport
Create a new instance of a TriggerExport object that belongs to the DataExport.
{id}Unique identifier for the DataExport object.
Create a new instance of a TriggerExport object that belongs to the DataExport.
POST DataExport/{id}/TriggerExport

{
    "name": "Sample Text Data",
    "isActive": true,
    "storageLocationId": 9,
    "dataExportTypeId": 5,
    "config": "Sample Text Data"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Sample Text Data",
                "isActive": true,
                "storageLocationId": 0,
                "storageLocationName": "Sample Text Data",
                "dataExportTypeId": 2,
                "dataExportTypeName": "Sample Text Data",
                "config": "Sample Text Data"
            }
        ]
    }
}