cURL
curl --request GET \ --url https://access.utgl.io/v1/ping \ --header 'Authorization: Basic <encoded-value>'
{ "message": "pong", "timestamp": "2022-11-09T10:34:18.277Z" }
Test API Connectivity to Access API and retrieve server time
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Successful response
"pong"
"2022-11-09T10:34:18.277Z"
Was this page helpful?