GET
/
api
/
hello_world
/
authenticated
curl --request GET \
  --url https://app.herondata.io/api/hello_world/authenticated \
  --header 'Authorization: Basic <encoded-value>'
{
  "hello": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/json
Authentication works
hello
string