1. Send the following request:
mutation{
publicAPIToken(clientId: "Client id", clientSecret: "Client secret key")
}
The request returns the following JSON response:
{
"data": {
"publicAPIToken": JWT_Token
}
}
2. Copy the JWT_Token value and paste it into the "Authorization" header of the API requests after the Bearer designation.
headers: {
"Authorization":"Bearer <JWT_Token>"
}