Authentication
Authentication
All endpoints in this API are only accessible with a valid API key.
To find your API key, use the following instructions.
Authenticating requests
To authenticate a request, add the x-api-key
header with your API key as the value, for example:
curl https://ic.armis.com/api/v1/device/_search
--header "x-api-key: <your api key>"
Unauthorized requests
Without the x-api-key
header, or with an invalid token, you'll get a response with the status code 401
(Unauthorized
).
Updated about 2 years ago