Authorizations
Body
application/json
Request Body
Response
Created
Create a delivery request which will be fulfilled async, only one of catalog id or order_item should be populated in a single delivery request.
curl --request POST \
--url https://api.pixxel.space/v0/catalogs/deliveries \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"deliveries": [
{
"catalog_ids": [
"47435e2b-d8c4-51ff-9de9-2be3bfc92276"
],
"cloud_info": {
"config": "config",
"path": "/path/subdirectory1"
},
"order_item_ids": [
"<string>"
]
}
]
}'
{
"deliveries": [
{
"catalog_id": "47435e2b-d8c4-51ff-9de9-2be3bfc92276",
"cloud_delivery": {
"config": "config",
"path": "/path/subdirectory1"
},
"created_at": "2024-05-27T06:50:20.056549Z",
"created_by": "60795589-8759-4d00-9162-b1537b66fb3e",
"delivery_id": "47435e2b-d8c4-41ff-9de9-2be3cfc92276",
"status": "SUCCESS",
"target_path": "order_1/catalogs.zip",
"task_id": "7f74a393-236f-4e02-9d22-b11dea4eac8a",
"updated_at": "2024-05-27T06:50:20.056549Z",
"updated_by": "b23d9181-4de1-4856-950b-e83b2ac52830"
}
]
}
Request Body
Show child attributes
Created
Show child attributes
curl --request POST \
--url https://api.pixxel.space/v0/catalogs/deliveries \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"deliveries": [
{
"catalog_ids": [
"47435e2b-d8c4-51ff-9de9-2be3bfc92276"
],
"cloud_info": {
"config": "config",
"path": "/path/subdirectory1"
},
"order_item_ids": [
"<string>"
]
}
]
}'
{
"deliveries": [
{
"catalog_id": "47435e2b-d8c4-51ff-9de9-2be3bfc92276",
"cloud_delivery": {
"config": "config",
"path": "/path/subdirectory1"
},
"created_at": "2024-05-27T06:50:20.056549Z",
"created_by": "60795589-8759-4d00-9162-b1537b66fb3e",
"delivery_id": "47435e2b-d8c4-41ff-9de9-2be3cfc92276",
"status": "SUCCESS",
"target_path": "order_1/catalogs.zip",
"task_id": "7f74a393-236f-4e02-9d22-b11dea4eac8a",
"updated_at": "2024-05-27T06:50:20.056549Z",
"updated_by": "b23d9181-4de1-4856-950b-e83b2ac52830"
}
]
}