Connection
Configuration
NAME | TYPE | DESCRIPTION | REQUIRED | READONLY |
---|---|---|---|---|
url | string | true | false | |
auth_method | string | Accepted Values: {“value”:“apikey”,“label”:“API token”}, {“value”:“pat”,“label”:“Personal access token”} | true | false |
username | string | (required if auth_method is “apikey”) | false | false |
api_key | string | (required if auth_method is “apikey”) | false | false |
access_token | string | (required if auth_method is “pat”) | false | false |
Example
1 { 2 "name": "jira connection", 3 "type": "jira", 4 "configuration": { 5 "access_token": "secret", 6 "api_key": "", 7 "auth_method": "pat", 8 "url": "https://jira.mycompany.com/", 9 "username": "" 10 } 11 }