Images contract preview
Review the proposed image-listing contract.
Proposed image listing
GET
https://{your-api-host}/orgs/{org_uuid}/api/imagesIllustrates a proposed organization browser image listing.
Illustrative request
curl -X GET "https://{your-api-host}/orgs/{org_uuid}/api/images" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"Illustrative response
{
"images": [
{
"name": "ubuntu-20.04",
"description": "Ubuntu 20.04 LTS with Chrome",
"os": "linux",
"browser": "chrome"
},
{
"name": "ubuntu-22.04",
"description": "Ubuntu 22.04 LTS with Chrome",
"os": "linux",
"browser": "chrome"
},
{
"name": "windows-10",
"description": "Windows 10 with Edge",
"os": "windows",
"browser": "edge"
},
{
"name": "windows-11",
"description": "Windows 11 with Edge",
"os": "windows",
"browser": "edge"
}
]
}