Skip to main content
GET
/
organization
/
{organizationId}
/
blueprint
/
catalog
/
{provider}
/
{serviceFamily}
/
{serviceVersion}
/
manifest
Get the input fields to display for a blueprint catalog service
curl --request GET \
  --url https://api.qovery.com/organization/{organizationId}/blueprint/catalog/{provider}/{serviceFamily}/{serviceVersion}/manifest \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "name": "db_password",
      "type": {
        "min": 123,
        "max": 123
      },
      "required": true,
      "is_secret": true,
      "description": "<string>",
      "allowed_values": [
        "<string>"
      ],
      "default_value": "<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

organizationId
string<uuid>
required

Organization ID

provider
string
required

Cloud provider (e.g. aws, gcp, azure)

serviceFamily
string
required

Service family (e.g. mysql, postgresql)

serviceVersion
string
required

Service version (e.g. 8, 14)

Response

The list of form fields to display for the selected blueprint

results
object[]

An editable form input the user fills in (from spec.variables).