Create a Jira issue with curl
curl --request POST \
  --url 'https://opennms.atlassian.net/rest/api/3/issue' \
  --user 'prefix@domain.com:1234567890ABCDEF12345678' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '{
  "fields": {
    "summary": "Test issue for cloud API",
    "issuetype": {
      "name": "Task"
    },
    "project": {
      "key": "GANIMAN"
    },
    "description": {
      "type": "doc",
      "version": 1,
      "content": [
        {
          "type": "paragraph",
          "content": [
            {
              "text": "This is a test issue.",
              "type": "text"
            }
          ]
        }
      ]
    }
  }
}'