Basic Auth and Other Simple Authentication Methods
Basic Auth, Bearer Token, API Key, and other special cases.
Authentication Configuration
{
"basic_auth": {
"auth_form": [
{
"name": "auth_details",
"title": "Auth Details",
"type": "text",
"required": true
},
{
"name": "auth_token",
"title": "Auth Token",
"type": "password",
"required": true
},
{
"name": "subdomain",
"title": "Subdmomain",
"type": "text",
"required": true,
"info": "Will be filled in for {{ subdomain }} in https://{{ subdomain }}.zendesk.com/api/v2/",
"pattern": "/^[\\w-_]+$/",
"regexErrorMessage": "The subdomain can only contain letters, numbers, -, and _"
}
],
"config": {}
}
}Basic Auth
Bearer Token
API Key
API Key in URL (special case)
Last updated
Was this helpful?