POST api2/export.json

Export

Request Information

URI Parameters

None.

Body Parameters

API.Models.ExportRequest
NameDescriptionTypeAdditional information
deviceID

Device ID from Authorize Device

integer

Required

projectID

Project ID

integer

Required

clientInfo

Client Info

string

Required

Request Formats

{
  "deviceID": 1,
  "projectID": 2,
  "clientInfo": "sample string 3"
}

Response Information

Resource Description

API.Models.ExportResponse
NameDescriptionTypeAdditional information
errorCode

Error code (Only in case of error)

string

None.

errorMessage

Error message (Only in case of error)

string

None.

errorActionCaption

Error caption (Only in case of error)

string

None.

errorActionURL

Error action url (Only in case of error)

string

None.

zip_url

Download ZIP URL

string

None.

mp3_url

List of mp3 download URLs

Collection of string

None.

Response Formats

{
  "errorCode": "sample string 1",
  "errorMessage": "sample string 2",
  "errorActionCaption": "sample string 3",
  "errorActionURL": "sample string 4",
  "zip_url": "sample string 5",
  "mp3_url": [
    "sample string 1",
    "sample string 2"
  ]
}