cURL
curl --request GET \ --url https://public.reap.video/api/v1/automation/get-all-uploads \ --header 'Authorization: Bearer <token>'
{ "uploads": [ { "id": "<string>", "fileName": "<string>", "fileType": "<string>", "fileSize": 123, "contentType": "<string>", "status": "<string>", "createdAt": 123, "updatedAt": 123 } ], "currentPage": 123, "totalPages": 123, "totalUploads": 123, "upload": {}, "verified": {}, "rejected": {} }
Retrieve all uploaded files for your studio
Show Upload Object
curl -X GET "https://public.reap.video/api/v1/automation/get-all-uploads?page=1&pageSize=20" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"