Authorization and sanitization
The Base section should also have authorization and sanitization, which is common for all modules. The authorization should use the API key, access token, or username and password entered in the connection. The sanitization should hide all these sensitive parameters.
{
...
"headers": {
"Authorization": "Token {{connection.apiKey}}"
},
"log": {
"sanitize": [
"request.headers.authorization"
]
}
...
}
Last updated