Skip to main content
GET
/
providers
/
{org}
/
{name}
/
versions
List Provider Versions
curl --request GET \
  --url https://api.example.com/providers/{org}/{name}/versions
[
  {
    "provider_name": "<string>",
    "version": "<string>",
    "runtime_version": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "image_url": "<string>",
    "source_hash": "<string>",
    "build_id": "<string>",
    "schemas": [
      {}
    ],
    "changelog": "<string>",
    "status": "building",
    "published_at": "2023-11-07T05:31:56Z",
    "error_message": "<string>"
  }
]

Path Parameters

org
string
required
name
string
required

Response

Successful Response

provider_name
string
required
version
string
required
runtime_version
string
required
created_at
string<date-time>
updated_at
string<date-time>
image_url
string | null
source_hash
string | null
build_id
string | null
schemas
Schemas · object[] | null
changelog
string | null
status
enum<string>
default:building

Build/publish status for a provider version.

Available options:
building,
published,
failed,
yanked
published_at
string<date-time> | null
error_message
string | null