github.com/kyma-project/kyma-environment-broker@v0.0.1/docs/user/05-40-instance-details.md (about) 1 # Check SAP BTP, Kyma runtime instance details 2 3 This tutorial shows how to get the SAP BTP, Kyma runtime instance details. 4 5 ## Steps 6 7 1. Export the instance ID that you set during [provisioning](05-10-provisioning-kyma-environment.md): 8 9 ```bash 10 export INSTANCE_ID={SET_INSTANCE_ID} 11 ``` 12 13 > **NOTE:** Ensure that the BROKER_URL and INSTANCE_ID environment variables are exported as well before you proceed. 14 15 2. Make a call to Kyma Environment Broker with a proper **Authorization** [request header](../contributor/01-10-authorization.md) to verify that provisioning/deprovisioning succeeded: 16 17 ```bash 18 curl --request GET "https://$BROKER_URL/oauth/v2/service_instances/$INSTANCE_ID" \ 19 --header 'X-Broker-API-Version: 2.14' \ 20 --header "$AUTHORIZATION_HEADER" 21 ``` 22 23 A successful call returns the instance details: 24 25 ```json 26 { 27 "service_id": "47c9dcbf-ff30-448e-ab36-d3bad66ba281", 28 "plan_id": "4deee563-e5ec-4731-b9b1-53b42d855f0c", 29 "dashboard_url": "https://console.{DOMAIN}", 30 "parameters": { 31 "autoScalerMax": 3, 32 "autoScalerMin": 1, 33 "components": [], 34 "machineType": null, 35 "maxSurge": 1, 36 "maxUnavailable": 1, 37 "name": "test", 38 "region": "westeurope", 39 "targetSecret": "azrspn-ce-skr-dev-00001", 40 "volumeSizeGb": 50, 41 "zones": ["1", "2", "3"] 42 } 43 } 44 ``` 45 46 > **NOTE:** The **dashboard_url** field is available only if the Kyma runtime was provisioned successfully and the Runtime Agent registered the Kyma runtime in the Director. Fields under the **parameters** field can differ depending on the provisioning input.