jira res-api 在描述中使用项目符号列表创建问题
jira res-api create issue with bullets list in description
嗨,我想用项目符号列表和其他来自 rest 的格式创建一个 jira 问题-api
知道我正在测试这段代码,但它 returns
{
"errorMessages": [],
"errors": {
"description": "Operation value must be a string"
}
}
身材是这样的
{
"fields": {
"project": {
"key": "DWH"
},
"issuetype": {
"name": "Story"
},
"summary": "auto created datatask",
"description": "description": ["Pro:<fil pro and activity number provided>.",
"Tablename:<fill table name>.",
"Table view:<fill table view name>.",
"endpoint:<fill knudepunkt>.",
"Task to do.",
"*Copy attached document to metadata/new folder.",
"* Run job to create the table.",
"* Test the data in Production when ready.",
"* Create extra userstory"],
"assignee": {
"key": "bdmdwhdata",
"name": "bdmdwhdata",
"emailAddress": "dwhdata@bankdata.dk"
},
"labels": ["DATA"]
}
}
是否可以在 jira 问题
中从 REST-API 创建多行描述
我只是在描述中写了一行它工作正常。
要添加新行,请尝试在描述中使用 \n
。欲了解更多信息,请查看此 documentation.
嗨,我想用项目符号列表和其他来自 rest 的格式创建一个 jira 问题-api 知道我正在测试这段代码,但它 returns
{
"errorMessages": [],
"errors": {
"description": "Operation value must be a string"
}
}
身材是这样的
{
"fields": {
"project": {
"key": "DWH"
},
"issuetype": {
"name": "Story"
},
"summary": "auto created datatask",
"description": "description": ["Pro:<fil pro and activity number provided>.",
"Tablename:<fill table name>.",
"Table view:<fill table view name>.",
"endpoint:<fill knudepunkt>.",
"Task to do.",
"*Copy attached document to metadata/new folder.",
"* Run job to create the table.",
"* Test the data in Production when ready.",
"* Create extra userstory"],
"assignee": {
"key": "bdmdwhdata",
"name": "bdmdwhdata",
"emailAddress": "dwhdata@bankdata.dk"
},
"labels": ["DATA"]
}
}
是否可以在 jira 问题
中从 REST-API 创建多行描述我只是在描述中写了一行它工作正常。
要添加新行,请尝试在描述中使用 \n
。欲了解更多信息,请查看此 documentation.