Skip to main content

Authentication

PRISM Agents are authenticated via an API key that you may retrive via the "Reset API Key" button in your agents dashboard.

You can pass this authentication key to your agent in one of three ways:

X-API-Key Header

This is the most preferred and supported way.

X-API-Key: your-key-here

Authorization Bearer Header

Authorization: Bearer <your key here>

Query Parameter

This is the least recommended method due to the fact that your key is leaked in HTTP logs.

?api-key=<your key here>