Jira API integration for Service Management

Did someone explore integration with Jira Service Management/Jira API? Looking for chat users to be able to create service request tickets in Jira. Use case examples could be to create basic support ticket, grant people access to Jira projects etc.

You can call Jira APIs directly from Botpress:

Step 1: Create a workflow variable (type: Object)

Step 2: Select Execute Code Card and use the below code to send an API Request.

try {
const response = await axios.get(‘https://www.boredapi.com/api/activity’)
workflow.response= response.data
}
catch (error) { console.error(error) }

Step 3: Add a text card with workflow.variable.parameter after the sample API request card.