Bearer Token Authentication
BEARER TOKEN#
Our service supports JWT Bearer Authentication method. For you to receive your Access and Refresh tokens, you need to implement the following POST method.Login method does not need to be authorized.You will need to include in the body of your POST request, the VAT of the company and the API Key in order to get a successful response.The accessToken received in the response is valid for 15 minutes. In order to refresh it you need to implement the method that is described in the section "Authentication Refresh".Request Payload: “[token value from the refreshToken object]”The response will be similar to the one received when issuing the access token. This request needs to be authenticated.Insert your "accessToken" value in the "Authentication" param on the header of the POST call.All requests to the API need to be authenticated by implementing JWT Bearer token authentication.Key: “Authorization”
Value: "Bearer<your_RefreshToken_here>"
Modified at 2025-06-25 12:58:12