Hello Team,
I am developing a Jira custom app I want to use the issue description I did set the UI but now I got the HTML format vale.like (<html><body><p>Paragraph Test</p><h1>H1 Test</h1></body></html>) but I want like this type
"description": {
"version": 1,
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Paragraph Test"
}
]
},
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "H1 Test"
}
]
this conversation has any documents you have please share me.
Hi @Arjunan G ,
The JSON format you are looking for is called ADF – Atlassian Document Format. To get this format, use the REST API v3.
To learn more about ADF, check this link: https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/
Hope that helps,
Oliver
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.