Authentication
Authenticate with the Nullify REST API to access endpoints
About authentication
To ensure your request is valid, include a token in the Authorization header of your request. In the example below, replace <YOUR-TOKEN>
with your Nullify token and <YOUR-TENANT-NAME>
with your organization's tenant name:
curl --request GET \
--url "https://api.<YOUR-TENANT-NAME>.nullify.ai/endpoint" \
--header "Authorization: Bearer <YOUR-TOKEN>"
If you attempt to access a REST API endpoint without a token or with a token lacking the necessary permissions, you will receive either a "404 Not Found" or a "403 Forbidden" response.
Authenticating with a Nullify token
If you want to use the Nullify REST API for organization-wide use, you can create a Nullify service account and generate a Nullify API token.
To generate a service account and token pair, access the https://app.<YOUR-TENANT-NAME>.nullify.ai
site for your installation and authorize your GitHub account.
Last updated
Was this helpful?