List files for a shop account
GET
/shops/{id}/files
const url = 'https://example.com/shops/example/files';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/shops/example/filesParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Responses
Section titled “Responses”Media typeapplication/json
Array<object>
object
Examplegenerated
[ { "id": "example", "account_id": "example", "file_name": "example", "description": "example", "asset_type": "example", "reference_id": "example", "mime": "example", "created_at": "example", "updated_at": "example", "updated": true }]