Here is the JSON I am using:
{ "serviceDeskId":"7",
"requestTypeId":"127",
"requestFieldValues":{ "customfield_15846":{ "value":"CDN Services",
"child":{ "value":"New Configuration"
}
},
"customfield_15607":{ "value":"High"
},
"customfield_15910":"172.30.136.46",
"customfield_15909":"",
"customfield_15894":1,
"customfield_15895":997,
"customfield_15896":"Sysadmin",
"customfield_15869":"BOT",
"customfield_15795":[ { "name":"5badbe291fa6b77b16764f29"
}
],
"summary":"Ticket with attachment",
"description":"Ticket with attachment"
},
"raiseOnBehalfOf":"5cb5692f1e9af40e540c0f55"
}
The approver is not set even when I am sending it - customfield_15795
Can you let me know if I am doing something wrong?
@Angélica LuzMy guess is that you are not a programmer? In a JSON, the sequence of key-value pairs (the ones inside the curly brackets {}) doesn't matter. In fact, it doesn't matter in any programming language.
If you use a programming language to call this API, the JSON that is created will have the key-value pairs in any order. Only in an array (the ones with square brackets) can you control the ordering.
Anyhow, just in case I might be missing something, I did try what you said and used this:
curl --request POST \
--url 'https://mycompany.jira.com/rest/servicedeskapi/request' \
--user 'email_id:token' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"serviceDeskId": "7",
"requestTypeId": "127",
"requestFieldValues": {
"summary": "Request JSD help via REST",
"description": "I need a new *mouse* for my Mac",
"customfield_15795": [{ "name":"5badbe291fa6b77b16764f29" }]
}
}
}'
Still, the approvers were not added. Can it be due to something in the workflow? Any suggestions where I can investigate are welcome
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get the most out of Jira Service Management
Start with basic Jira Service Management terms and navigation. Then, discover how to solve customer problems efficiently.
Learning Path
Adopt ITSM practices to deliver exceptional service
Learn IT service management principles and configure Jira Service Management to implement ITSM processes.
Atlassian Certified Associate
Jira Service Management Agent Essentials certification
Prove you know what’s essential to providing efficient and resolution-focused service in Jira Service Management.