curl --request POST \
--url https://api.eda.prisme.ai/v2/workspaces/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"workspaces": {
"query": {},
"pagination": {
"limit": 123,
"page": 123
}
},
"includeApps": true
}'
This response does not have an example.
Export multiple workspaces to a .zip archive
curl --request POST \
--url https://api.eda.prisme.ai/v2/workspaces/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"workspaces": {
"query": {},
"pagination": {
"limit": 123,
"page": 123
}
},
"includeApps": true
}'
This response does not have an example.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success Response
The response is of type file
.
Was this page helpful?