Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,643,721
Community Members
 
Community Events
196
Community Groups

How to set approvers while creating issue rest api

Hi All,

 

I am brand new to JIRA Service desk and i am trying to create issue type of Service request with approvals and i want to know i can create issue with approvers using REST API.

1 answer

Suggest an answer

Log in or Sign up to answer
1 vote
Angélica Luz
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Apr 14, 2020

Hello Avitesh,

Welcome to Atlassian Community!

It's possible to create a ticket via REST Api with approvers, but in this case, it will be necessary to add the field id.

Multi-user picker custom field - A custom UI field that enables multiple users to be selected.

"customfield_11458" : [ { "name":"inigomontoya" }, { "name":"tommytomtomahawk" }]

On "name" you will add QM id (if it's a customer) or the Atlassian account id (for agents).

Here is the template that I used and that successfully created a ticket with approvers:

curl --request POST \
--url 'https://mysite.atlassian.net/rest/servicedeskapi/request' \
--user 'name@domain.com:APITOKEN' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"serviceDeskId": "12",
"requestTypeId": "223",
"requestFieldValues": {
"summary": "Request JSD help via REST",
"description": "I need a new *mouse* for my Mac",
"customfield_10100": [{ "name":"1a23b45cde67f89g1h23ij4k" }]
}
}
}'

Screen Shot 2020-04-14 at 15.21.10.png

If you have any other questions regarding this matter, please let us know.

Regards,
Angélica

Thanks for that, helped a tone!

Sergei Gridnevskii
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Aug 30, 2022

Is it possible to select approver by email, not by name? We have people with same name in Jira.

Hi Sergei, 

You should be able to achieve this by using the email of the user to fetch the Atlassian id with the Jira REST API. Then you should be able to tunnel it into the call above. 

You will need to use "id" as key in the list instead of "name" or "username". 

TAGS
AUG Leaders

Atlassian Community Events