Returns a resource object of type upload_collection.
1GET https://site-api.datocms.com/upload-collections/:upload_collection_id HTTP/1.12Authorization: Bearer YOUR-API-TOKEN3Accept: application/json4X-Api-Version: 3
1curl -g 'https://site-api.datocms.com/upload-collections/:upload_collection_id' \2 \3 -H "Authorization: Bearer YOUR-API-TOKEN" \4 -H "Accept: application/json" \5 -H "X-Api-Version: 3"
1await fetch(2 "https://site-api.datocms.com/upload-collections/:upload_collection_id",3 {4 headers: {5 Authorization: "Bearer YOUR-API-TOKEN",6 Accept: "application/json",7 "X-Api-Version": "3",8 },9 },10);
1HTTP/1.1 200 OK2Content-Type: application/json3Cache-Control: cache-control: max-age=0, private, must-revalidate4X-RateLimit-Limit: 305X-RateLimit-Remaining: 286 7{8 "data": {9 "type": "upload_collection",10 "id": "uinr2zfqQLeCo_1O0-ao-Q",11 "relationships": {12 "parent": {13 "data": null14 },15 "children": {16 "data": [17 {18 "type": "upload_collection",19 "id": "uinr2zfqQLeCo_1O0-ao-Q"20 }21 ]22 }23 },24 "attributes": {25 "label": "Posts",26 "position": 127 }28 }29}