Authentication
Using your clientKey and clientSecret you can request for a token by calling the dedicated method (note: replace asterisks with your clientKey and clinetSecret)
If the client key and secret are correct, then the API will return a JWT token.
The JWT token expires after one day; to get a new one, restart and call again /v1/sts/login/services.
AuthN/AuthZ Flow
Endpoints
Use your client key and client secret to retrieve a valid authentication token
Get authentication token
Returns a JWT token inside the body and in the Authorization Header of the response
POSThttps://explore.cloud4wi.com//v1/sts/login/services
Body
clientKeystring
clientSecretstring
Response
User authenticated
Body
tokenstring
JWT token
Request
Response
You can manually revoke a token using the following end-point:
Revoke authetnication Token
It revokes the JWT token passed in the header.
POSThttps://explore.cloud4wi.com//v1/sts/logout
Response
The token has been revoked
Request
Last updated