Authorization
Common methods of authorization
API key in headers
{
"headers": {
"x-api-key": "{{connection.apiKey}}"
}
}API key in query string
{
"qs": {
"apikey": "{{connection.apiKey}}"
}
}OAuth 2 access token in headers
{
"headers": {
"authorization": "Bearer {{connection.accessToken}}"
}
}Last updated

