In order to access and interact with our API endpoints, authentication is required using the JSON Web Token () standard.
This page will guide you through the process of obtaining and attaching the JWT token to your requests' headers. The JWT token serves as a secure and efficient way to verify the identity of the user and authorize access to protected resources.
By following the instructions provided here, you will be able to successfully authenticate your requests and ensure the security of your interactions with our API. Let's dive in and explore the details of the authentication process.
Follow the to create API operator, and save the generated credentials:
API Key ID
API Key secret
You can exchange API Key ID
+ API Key secret
for a valid on the target workspace
:
bash
Response will look like:
json
The accessToken
key contains the JWT.
Attach the JWT to requests like this:
bash
You can obtain new JWT without exchanging API credentials again and rather just exchanging refreshToken
:
bash
The response will have exactly same structure as the /auth/token
response (see ).