Skip to main content
GET
/
helm
/
{helmId}
/
listServices
Get helm kubernetes services
curl --request GET \
  --url https://api.qovery.com/helm/{helmId}/listServices \
  --header 'Authorization: <api-key>'
{
  "results": [
    {
      "metadata": {
        "name": "<string>"
      },
      "service_spec": {
        "type": "<string>",
        "ports": [
          {
            "name": "<string>",
            "port": 123
          }
        ],
        "selectors": [
          {
            "key": "<string>",
            "value": "<string>"
          }
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Token API are generated by Qovery to manage machine to machine interaction and do not have a TTL. Prefix your token with "Token ". Curl Example: curl https://console.qovery.com/organization -H "Authorization: Token $qovery_token"

Path Parameters

helmId
string
required

Response

OK

results
KubernetesService · object[]