Skip to main content
GET
/
providers
/
{org}
/
{name}
/
versions
/
{version}
/
status
Get Version Status
curl --request GET \
  --url https://api.example.com/providers/{org}/{name}/versions/{version}/status
{
  "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
version
string
required

Response

Successful Response

A published version of a provider.

Identity fields (frozen): provider_name: Globally unique provider name this version belongs to. version: Semantic version string (e.g., "1.0.0").

Build metadata: runtime_version: Pinned runtime version used to build the image. image_url: Built container image URL (set after build completes). source_hash: SHA-256 of the source tarball.

Provider introspection: schemas: Resource type schemas extracted from the provider.

State (system-managed): status: Build/publish lifecycle status. published_at: Timestamp when version was published. error_message: Error details when build fails.

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