collection.downloadHTML
Starts generating the download package and returns the progress status. When the status is complete it also returns the resource url.
Last updated
# GET
curl -X GET \
-G \
https://api.flipsnack.com/v1/ \
-d action=collection.downloadHTML \
-d apiKey=<YOUR-API-KEY> \
-d collectionHash=d3m0h45h \
-d signature=<YOUR-REQUEST-SIGNATURE><form method="get" action="https://api.flipsnack.com/v1/">
<input type="hidden" name="action" value="collection.downloadHTML">
<input type="hidden" name="apiKey" value="<YOUR-API-KEY>">
<input type="hidden" name="collectionHash">
<input type="hidden" name="signature" value="<YOUR-REQUEST-SIGNATURE>">
<button type="submit">Submit</button>
</form>{
"code": 20,
"status": "OK",
"data": {
"status": "COMPLETE",
"resourceUrl": "https://cdn.flipsnack.com/sample-path/to-html.zip",
}
}