Skip to main content

Create JIRA Authentications

The following mutation creates a JIRA Authentication for a given account:

mutation CreateJIRAAuthentication($accountId: ObjectID!, $name: String!, $cloudId: String!, $jiraUrl: String, $refreshToken: String!) {
createJiraAuthentication(
input: {
accountId: $accountId
name: $name
cloudId: $cloudId
jiraUrl: $jiraUrl
refreshToken: $refreshToken
}
) {
jiraAuthentication {
id
name
cloudId
jiraUrl
createdAt
updatedAt
}
}
}

Try in explorer