Authenticating Using API Keys
Using API Keys in Curl
Specify the API key in the-u
or --user
flag. The password is an empty string.
Here is an example:
curl --request GET -sL \\
--url '<https://external.pleo.io/v1/installations/me>'\\
-u 'enter the API key here'
Using API Keys in a Graphical User Inteface (GUI) Tool
Here, we are using Postman for reference:
- In the
Authorization
header of the request, select Basic Auth as the Auth Type. - In the
Username
, enter the API key. - In the
Password
, do not enter any value.
Updated 6 days ago