From the users specific JSON file examples ( https://confluence.atlassian.com/adminjiraserver071/importing-data-from-json-802592907.html ), we know that we can import some fields.
For example,
"users": [ { "name" : "someuser", "groups" : [ "jira-users", "my-custom-group" ], "active" : true, "email" : "user1@example.com", "fullname" : "User 1" }]
Is it possible to list out all the fields that we can put into the JSON file to import to JIRA system ?
Hi @Pong - Phongsathorn Eakamongul
I've found the quickest way to get a picture of the JSON structure is to retrieve an issue via REST as an example e.g.
http://localhost:8080/rest/api/2/issue/COOL-1
The customerfield_????? reference numbers can be obtained from the
SELECT * FROM jiradb.customfield;
ID field
It looks like you're new here. Sign in or register to get started.