Authentication
x-nabis-access-token
The NABIS Platform V2 API is secured via an API token security scheme, which is
passed in the header with the following key, x-nabis-access-token
. This is your key
that you generated in a prior step.
curl https://platform-api.nabis.pro/v2/warehouses \
-H 'x-nabis-access-token: <access-token>'
> [{"id":"4de72642-m30c-4149-9e93-b1e2f11d34co"}...]%
Invalid Credentials
If you attempt to send an invalid token, the API will respond appropriately.
{
"statusCode": 401,
"message": "Invalid API key",
}
If you need help verifying the key you are using is correct, refer to the Generating API Key documentation.