You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hey,
I'm using service desk in Jira cloud and I want to create a customer via rest API and sent to him an invaite.
I manage to do this with there docs but the rest is not send an invitation mail to the customer
I found that attlassian have experimental API
/rest/servicedesk/1/pages/people/customers/pagination/project_key/invite
I tried to run this from postman and it's work but when I tried to run this with scriptRunner plug-in for jira cloud and it's didn't work.
import org.apache.commons.codec.binary.Base64;
String authString = "USER:PASS"
byte[] authEncBytes = Base64.encodeBase64(authString.getBytes());
String authStringEnc = new String(authEncBytes);
def body= "{\"emails\":[\"${emailAddress}\"]}"
def result = post('/rest/servicedesk/1/pages/people/customers/pagination/MSD/invite')
.header("Authorization", 'Basic ${authStringEnc}')
.header('Content-Type', 'application/json')
.header("X-ExperimentalApi", "opt-in")
.body(body)
//.asObject(Map)
//.asJson()
.asString()
return result
Error massage as String:
POST request to /rest/servicedesk/1/pages/people/customers/pagination/MSD/invite returned an error code: status: 400 - Bad Request body: <html> <head><title>400 Bad Request</title></head> <body bgcolor="white"> <center><h1>400 Bad Request</h1></center> </body> </html>
When I return it asObject(Map)
Error massage:
Serializing object into 'interface java.util.Map' POST request to /rest/servicedesk/1/pages/people/customers/pagination/MSD/invite returned an error code: status: 400 - Bad Request body: java.lang.RuntimeException: com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (number, String, array, object, 'true', 'false' or 'null') at [Source: <html> <head><title>400 Bad Request</title></head> <body bgcolor="white"> <center><h1>400 Bad Request</h1></center> </body> </html> ; line: 1, column: 2] POST /rest/servicedesk/1/pages/people/customers/pagination/MSD/invite asObject Request Duration: 3439ms
Please help!
Thanks
I successfully sent the request from kotlin code.
Here some ideas to check:
The rest looks good to me. Hopefully it works for you. Good luck.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.