ePub Exports
ePub Exports API
// Combination of a Course & EpubExport.
{
// the unique identifier for the course
"id": 101,
// the name for the course
"name": "Maths 101",
// ePub export API object
"epub_export": null
}{
// the unique identifier for the export
"id": 101,
// the date and time this export was requested
"created_at": "2014-01-01T00:00:00Z",
// attachment api object for the export ePub (not present until the export
// completes)
"attachment": {"url":"https:\/\/example.com\/api\/v1\/attachments\/789?download_frd=1"},
// The api endpoint for polling the current progress
"progress_url": "https://example.com/api/v1/progress/4",
// The ID of the user who started the export
"user_id": 4,
// Current state of the ePub export: created exporting exported generating
// generated failed
"workflow_state": "exported"
}Last updated
Was this helpful?