Authentication: Reportana’s API uses the Basic Auth standard for authentication. To authenticate, you must encode your Client ID and Client Secret in Base64, concatenated with a colon (:) between them. These values can be obtained directly from our platform. Authentication is performed via the Authorization header. Example usage:

Authorization: Basic base64(client_id + ':' + client_secret)

Make sure to replace client_id and client_secret with the specific values from your account.