POST
/
workspaces
/
assets
/
download
curl --request POST \
  --url https://api.mudstack.com/workspaces/assets/download \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-workspace-id: <x-workspace-id>' \
  --data '{
  "asset_ids": [
    "<string>"
  ],
  "folders": [
    "<string>"
  ],
  "attachments": true
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-account-id
string
required
x-workspace-id
string
required

Body

application/json
asset_ids
string[]
folders
string[]
attachments
boolean

Response

200

Assets downloaded successfully