简体   繁体   中英

How to use Atlassian Document Format in create issue rest api

I am trying to create an issue via Jira API -

{
    // other fields is here
    description: {
      type: "doc",
      version: 1,
      content: [
        {
          type: "text",
          text: summary
        }
     }
}

but I get an error - "Operation value must be a string".

so how can I create an issue correctly?

Most likely you're using API version 2 - which accepts text for this field.

However, you're providing value as json ( Atlassian Document Format ) which is for API version 3

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM