Hi everybody,
i'm facing an issue when i try to create a request by servicedesk api.
The create request returns me a 301 status and then redirect to another service and returns a different result which is a list of ticket from a GET service.
Can you help me finding the mistake I'm making?
Thanks.
These are the api call url and its body.
domain.atlassian.net/rest/servicedeskapi/request
{
"requestFieldValues": {
"summary": "summary",
"description": "description",
"customfield_10092": "url",
"priority": "1",
"customfield_10093": "Niconize",
"canRaiseOnBehalfOf": true
},
"canRaiseOnBehalfOf": "user_id",
"requestParticipants": ["user2_id"]
}
Same issue when I try to comment a ticket
domani.atlassian.net/rest/servicedeskapi/request/25536/comment
On creation you also need to specify the following, request id and the id of the service desk.
On comment you need to provide the body and if the comment is public or true or false
Hi Marc,
thanks for reply.
I added the missing fields but nothing has changed.
Do you have any other suggestion?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what are the exact API calls you are making for both actions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Marc - Devoteam,
these are the links to api i'm using:
Create request: https://developer.atlassian.com/cloud/jira/service-desk/rest/api-group-request/#api-rest-servicedeskapi-request-post
URLs are in the issue description.
The user that i'm using to execute these calls is mine who is a Agent user and not a customer. Can be this the 301 status cause?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Marc - Devoteam
i may found a way to resolve the issue. I was basically missing the https protocol at the beginning.
Now i'm getting a 400 status and a response body:
"errorMessages": [
"Invalid request payload. Refer to the REST API documentation and try again."
]
Any suggestions?
Thanks for the support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Marc - Devoteam
nevermind, i resolve all the issue i was facing. :)
The priority expected an object as it follows:
"priority": {
"id": 1,
}
Thank for the support you provided me!
Regards :D
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.