Get Collection Bundle List
Description
Retrieve a list of Collection Bundles
Url
|
1 |
GET /api/v0/collectionbundle/ |
Parameters optional
- tag__name: filter by tag name, using this exact match.
- app__name: filter by application name, using this exact match.
Example
Request
|
1 |
curl 'https://my.craftar.net/api/v0/collectionbundle/?api_key=123456789abcdefghijk123456789abcdefghijk' |
Response
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
{ "meta": { "limit": 20, "next": null, "offset": 0, "previous": null, "total_count": 2 }, "objects": [ { "app": "/api/v0/app/9551c956eb4d4d16bef21663799ef0e2/", "collection": "/api/v0/collection/de3d4ef4db27402581809451b1a92efb/", "file": null, "resource_uri": "/api/v0/collectionbundle/2bf5335dd10a49b582d48218aeac1b78/", "status": "Some items have changed", "uuid": "2bf5335dd10a49b582d48218aeac1b78", "version": "/api/v0/version/96e48d225bd34d829d9ff2c7437998d4/" }, { "app": "/api/v0/app/9551c956eb4d4d16bef21663799ef0e2/", "collection": "/api/v0/collection/47c89ff627344abd84decaca460130fe/", "file": "https://66c6febe755cc993b5c8-f7441eb3cd61871fc9e8c471fe6cd109.ssl.cf5.rackcdn.com/bundles/47c89ff627344abd84decaca460130fe/123/d7e7438ae248404fade3e1508643233d.zip", "resource_uri": "/api/v0/collectionbundle/d7e7438ae248404fade3e1508643233d/", "status": "Ready", "uuid": "d7e7438ae248404fade3e1508643233d", "version": "/api/v0/version/96e48d225bd34d829d9ff2c7437998d4/" } ]} |