For the complete documentation index, see llms.txt. This page is also available as Markdown.

CreateIssue

Create Jira issue.

Task version: 1.0.0

Required Frends version: 5.5+

Required .NET version: 6.0

Compatible Agents: Crossplatform

Source code: https://github.com/FrendsPlatform/Frends.Jira

Task Parameters

Name
Description

JiraBaseUrl : String

Jira base URL.

Default: - Example: https://test.jira.fi/jira

🗝Token : String

PAT or API token.

Default: - Example: 1a2b3c4d5e6f7g8h9i0j1k2l3m4n5o6p7q8r9s0t1u2v3w4x5y6z

Name
Description

ProjectKey : String

Project Key without number.

Default: - Example: TT

Summary : String

Project summary.

Default: - Example: This is summary.

IssueType : String

Issue type.

Default: - Example: Incident

Description : String

Description.

Default: - Example: This is description.

Parameters : Parameters[]

Optional parameters such as ticket creator (e.g. customfield_14102).

Default: - Example: [ { Key = "customfield_1", Value = "foo" }, { Key = "customfield_2", Value = "bar" } ]

Name
Description

ThrowOnError : Boolean

Throw an error on exception.

If set to false, exception message can be found in Result.ErrorMessage.

Default: - Example: true

Task Result

Name
Description

Success : Boolean

Operation complete without errors. Example: true

Data : JToken

Request content as JToken. Example: {{ "id": "151959", "key": "TT-87", "self": "https://test.jira.fi/jira/rest/api/latest/issue/151959" }}

ErrorMessage : String

Error message. Example: An error occured...

Task Changelog

Changelog for Task Frends.Jira.CreateIssue.

[1.1.0] - 2025-03-19

Changed

  • Updated packages: Newtonsoft.Json 12.0.1 -> 13.0.3 RestSharp 110.2.0 -> 112.1.0 coverlet.collector 3.1.2 -> 6.0.4 Microsoft.NET.Test.Sdk 17.1.0 -> 17.13.0 MSTest.TestAdapter 2.2.8 -> 3.8.3 MSTest.TestFramework 2.2.8 -> 3.8.3

[1.0.0] - 2023-08-17

Added

  • Initial implementation

Last updated

Was this helpful?