Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Select method POST

  2. Add URL {your_instance_url}/api/v2/tickets

  3. In the Authentication method select list select the credential created earlier (Token or OAuth)

  4. In the Body section add

    Code Block
    languagejs
    {
      "ticket": {
        "comment": {
          "body": "{{issue.description}}"
        },
        "priority": "urgent",
        "subject": "{{issue.summary}}"
      }
    }
    

...