Get hello message
Return a simple hello message
GET
/appid-{appId}/{tenantId}/helloResponses
200return a simple hello message
string500error code 500
stringTry it
Server
Request
curl -X GET "/appid-{appId}/{tenantId}/hello"const response = await fetch("/appid-{appId}/{tenantId}/hello", {
method: "GET"
});import requests
response = requests.get(
"/appid-{appId}/{tenantId}/hello",
)Response
"Hello""Internal Error"