POST
/
v0
/
catalogs
/
download
curl --request POST \
  --url https://api.pixxel.space/v0/catalogs/download \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "catalog_ids": [
    "47435e2b-d8c4-51ff-9de9-2be3bfc92276"
  ],
  "order_item_ids": [
    "<string>"
  ]
}'
{
  "id": "47435e2b-d8c4-41ff-9de9-2be3bfc92276",
  "signed_url": "http://signed_url_link",
  "status": "success"
}

Authorizations

Authorization
string
header
required

Body

application/json
Request Body
catalog_ids
string[]
required

do not supply order_item_ids if this field is used

Example:
["47435e2b-d8c4-51ff-9de9-2be3bfc92276"]
order_item_ids
string[]
required

do not supply catalog_ids if this field is used

Response

201
application/json
Created
id
string
Example:

"47435e2b-d8c4-41ff-9de9-2be3bfc92276"

signed_url
string
Example:

"http://signed_url_link"

status
enum<string>
Available options:
success,
created,
failed,
in_progress
Example:

"success"