Authorization

Authorization

Steps for Authorizing Requests

Generate an API Key in the Desired Project

To authorize your requests, you first need to generate an API Key in the project you wish to interact with.

Include the Authorization Header in Your Requests

After obtaining your API Key, you can begin using it to perform actions over the API in the corresponding project. This is done by including a Bearer Authorization header in your requests, followed by your API Key.

Authorization: Bearer YOUR_API_KEY

Please replace YOUR_API_KEY with the actual API Key you generated in Step 1. This will ensure that your requests are properly authenticated.

Verify the Authorization

After sending the request with the Authorization header, ensure that you receive a successful response from the server. If you receive an error, double-check your API Key and the structure of your Authorization header.