We are using SAP and Jira (data center) in our organization
There is a select list field in SAP that contains about 1000 options in this field (for keeping drivers national codes)
We want to have this information in issues in Jira
So we have to create a custom field in Jira and get options from field in SAP
So we have to use API
Hi, @Gurinder Summan
You can try request like this:
curl -D- -u *:* -X PUT --data "{\"fields\" : {\"customfield_10614\": [{ \"value\": \"TST1\" }, { \"value\": \"TST2\" }]}}" -H "Content-Type: application/json" http://jira.*.com:8080/rest/api/2/issue/XYZ-1000
Just adopt it to your credentials, and customfiled ID
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.