Hi all,
I was using the JIRA rest api to create the issue. I want to update the customer whenever someone added/ update a comment. For that purpose, I added an automation rule.
But I found out that no emails are sending whenever somebody comments.
Then from this post https://community.atlassian.com/t5/Jira-Service-Desk-questions/Automation-Rule-Notification-Action-Not-Sending/qaq-p/738762 , I understood that I have to change my request type to service desk.
Then I found out that there is separate service desk rest api https://community.developer.atlassian.com/t/whats-the-difference-between-jira-rest-api-and-jira-service-desk-rest-api/11009 but I could not find a proper example about create a ticket using service desk api.
Can some one please point me to the right direction.
Following example worked. (ref - https://docs.atlassian.com/jira-servicedesk/REST/3.6.2/?_ga=2.157320761.2089437250.1557061318-247648608.1537283601#servicedeskapi/request-createCustomerRequest)
rest/servicedeskapi/request
with json body
{
"serviceDeskId": "{your id}",
"requestTypeId": "{your id}",
"requestFieldValues": {
"summary": "Request raised via service REST API",
"description": "test."
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know this is a bit late for you David, but for those that come across this thread wondering, it's the "raiseOnBehalfOf" field, e.g.
{
"serviceDeskId": "{your id}",
"requestTypeId": "{your id}",
"requestFieldValues": {
"summary": "Request raised via service REST API",
"description": "test."
},
"raiseOnBehalfOf": "sergey@google.com"
}
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.
Hi,
Whats the whole URL used for this? I guess this is just the last part of the URL rest/servicedeskapi/request
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.