Skip to main content
public preview

This is a proposed contract. No concrete public host or key-issuer URL is published. Every command and response is illustrative.

Images contract preview

Review the proposed image-listing contract.

Proposed image listing

GEThttps://{your-api-host}/orgs/{org_uuid}/api/images

Illustrates 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"
    }
  ]
}