Skip to main content
POST
/
providers
/
installed
/
{org}
/
{name}
/
upgrade
Upgrade Provider
curl --request POST \
  --url https://api.example.com/providers/installed/{org}/{name}/upgrade \
  --header 'Content-Type: application/json' \
  --data '
{
  "version": "<string>"
}
'
{
  "provider_name": "<string>",
  "installed_version": "<string>",
  "installed_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "current_version": "<string>",
  "upgrade_policy": "manual",
  "resource_tier": "standard",
  "config": {}
}

Path Parameters

org
string
required
name
string
required

Body

application/json

Request model for upgrading an installed store provider.

Attributes: version: Target version to upgrade to (None = upgrade to latest published).

version
string | null

Response

Successful Response

Public-facing response model for a provider installation.

Excludes internal infrastructure fields (deployment_name, service_name, current_image) that are not meaningful to API consumers.

Attributes: provider_name: Name of the installed provider. installed_version: Semver of the currently installed version. current_version: Version currently deployed (None if never deployed). upgrade_policy: Whether upgrades are applied automatically or manually. resource_tier: Resource allocation tier for the provider. config: Key-value pairs injected as environment variables on the deployment. installed_at: Timestamp when the provider was first installed. created_at: Creation timestamp. updated_at: Last update timestamp.

provider_name
string
required
installed_version
string
required
installed_at
string<date-time>
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
current_version
string | null
upgrade_policy
enum<string>
default:manual

How a tenant wants installed providers to be upgraded.

Available options:
auto,
manual
resource_tier
enum<string>
default:standard

Resource allocation tier for an installed provider.

Available options:
free,
standard,
performance
config
Config · object