Users must authenticate themselves and obtain an authentication token
before invoking the Navigate APIs. Authentication must be performed
using the username and password selected at the time of registration.
For example, if a user registered with the username john@acme.com
and password SampleP4ss, this same username-password combination
should be used for obtaining an authentication token for the APIs.The authentication token must be sent with every subsequent API request
as a bearer token. This is done by including the HTTP header named
Authorization with the value Bearer [authentication token]. For
instance, if the authentication token obtained from the Authentication
API iseyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30
it should be sent with subsequent API requests asAuthorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30
Each authentication token is valid for 60 minutes (1 hour) and must be
obtained again once it expires. Modified at 2025-10-28 05:23:45