Steps

  1. Acquire a Bearer Token: The first step is to acquire a Bearer token from the Atomix web app. You can generate this under the create store section. Simply select 'API Store' and fill out the required fields and your API token will be generated and available to be copied.
  2. Set Authorization Header: After acquiring the token, you will need to include it in the Authorization header for all subsequent requests. The format of the Authorization header is as follows:
    Authorization: Bearer <access_token>  
    
  3. Include Authorization Header in Requests: When sending a GET or POST request to our API, include the Authorization header in your request with the Bearer token you acquired in step 1.
  4. Verify Responses: Once you include the Authorization header in your requests, our API will verify the Bearer token on our end to ensure that the request is authorized. If the token is valid, you will receive the response you requested. If the token is invalid or expired, you will receive an error message indicating that the request is unauthorized.

We hope these instructions help you use our API with ease and security. If you have any questions or encounter any issues with the authentication process, please don't hesitate to contact our development team for assistance.