Knowledge Base Article

Access Sisense API From Postman

Introduction:
In order to invoke the Sisense API from Postman or from an external application you first need access to an API token.
In order to do this you need to make a POST request with the username and password submitted as a URL encoded form submission.
Set the following headers:
Content-Type - application/x-www-form-urlencoded
Accept - application/json
Enter the username and password with the following format
username=<url encoded user>&password=<url encoded password>
e.g. username=jay.dastur%40sisense.com&password=xxxx
See Screenshots:
Once you have the API token, you can make subsequent calls to the API by passing on the token as the Authorization header in the following format - Bearer <api token>
Updated 03-02-2023
No CommentsBe the first to comment