Skip to main content
GET
/
blueprint
/
{blueprintId}
/
update
Check if a blueprint service has an available update
curl --request GET \
  --url https://api.qovery.com/blueprint/{blueprintId}/update \
  --header 'Authorization: Bearer <token>'
{
  "is_up_to_date": true,
  "latest_tag": "aws/postgres/17/1.1.0",
  "new_required_values": [
    {
      "name": "<string>"
    }
  ],
  "new_optional_values": [
    {
      "name": "<string>",
      "default_value": "<string>"
    }
  ],
  "now_required_values": [
    {
      "name": "<string>"
    }
  ],
  "updated_values": [
    {
      "name": "<string>",
      "current_default_value": "<string>",
      "new_default_value": "<string>",
      "current_value": "<string>"
    }
  ],
  "removed_values": [
    {
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT tokens should be used with OIDC account (human to machine). JWT tokens used by the Qovery console to communicate with the API have a TTL. Curl Example ' curl https://console.qovery.com/organization -H "Authorization: Bearer $qovery_token" '

Path Parameters

blueprintId
string<uuid>
required

Blueprint ID

Response

Blueprint update availability

is_up_to_date
boolean
required
latest_tag
string
required
Example:

"aws/postgres/17/1.1.0"

new_required_values
object[]
required

Variables added in the latest version that are required with no default

new_optional_values
object[]
required

Variables added in the latest version that have a default value

now_required_values
object[]
required

Variables that were optional but are now required in the latest version

updated_values
object[]
required

Variables whose default value changed between the current and latest versions

removed_values
object[]
required

Variables that no longer exist in the latest version