Echo Service

Auth

Auth methods

Prompts the user for authorization using HTTP Basic Auth.

get
https://shared-services.kong-sales-engineering.com/echo/basic-auth/{user}/{passwd}

Path Parameters

userstringrequired
passwdstringrequired

Response

Sucessful authentication.

get/basic-auth/{user}/{passwd}
 
curl --request GET \
  --url https://shared-services.kong-sales-engineering.com/echo/basic-auth// \
  --header 'Authorization: Basic Og==' \
  --header 'Content-Type: application/json'
Sucessful authentication.

Prompts the user for authorization using bearer authentication.

get
https://shared-services.kong-sales-engineering.com/echo/bearer

Headers

Authorization

Response

Sucessful authentication.

get/bearer
 
curl --request GET \
  --url https://shared-services.kong-sales-engineering.com/echo/bearer \
  --header 'Authorization: Basic Og==' \
  --header 'Content-Type: application/json'
Sucessful authentication.

Prompts the user for authorization using Digest Auth.

get
https://shared-services.kong-sales-engineering.com/echo/digest-auth/{qop}/{user}/{passwd}

Path Parameters

qopstringrequired

auth or auth-int

userstringrequired
passwdstringrequired

Response

Sucessful authentication.

get/digest-auth/{qop}/{user}/{passwd}
 
curl --request GET \
  --url https://shared-services.kong-sales-engineering.com/echo/digest-auth/// \
  --header 'Authorization: Basic Og==' \
  --header 'Content-Type: application/json'
Sucessful authentication.

Prompts the user for authorization using Digest Auth + Algorithm.

get
https://shared-services.kong-sales-engineering.com/echo/digest-auth/{qop}/{user}/{passwd}/{algorithm}

Path Parameters

qopstringrequired

auth or auth-int

userstringrequired
passwdstringrequired
algorithmstringrequired

MD5, SHA-256, SHA-512

Default:MD5

Response

Sucessful authentication.

get/digest-auth/{qop}/{user}/{passwd}/{algorithm}
 
curl --request GET \
  --url https://shared-services.kong-sales-engineering.com/echo/digest-auth////MD5 \
  --header 'Authorization: Basic Og==' \
  --header 'Content-Type: application/json'
Sucessful authentication.