curl --request PUT \
--url https://api.example.com/api/integrations/jira \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"enabled": true,
"site_url": "<string>",
"email": "jsmith@example.com",
"api_token": "<string>",
"clear_api_token": true,
"project_key": "<string>",
"issue_type": "<string>",
"labels": null,
"default_assignee": "<string>",
"create_issues": true,
"update_issues_on_resolve": true,
"sync_status_from_jira": true,
"sync_comments_from_jira": true,
"webhook_secret": "<string>",
"clear_webhook_secret": true
}
'