I am working on migrating issues from an old instance to a new one.
My migration process is as follows:
The issue is that when updating an issue with the parent field, I receive a 204 status response, but nothing happens.
It's worth mentioning that I am using the Data Center version of Jira.
Any help would be appreciated
Hi @Ismail Abdelkefi ,
What payload exactly are you sending/using for sub-tasks and setting parent on them? Also, it might be worth knowing which Jira DC version you have. 👀
Have you tried something like this:
{
"fields": {
"parent": {
"key": "PROJ-123"
}
}
}
or alternatively:
{
"fields": {
"parent": {
"id": "10001"
}
}
}
I've mainly done this update on the cloud, but something similar should work on DC (depending on the version).
Cheers,
Tobi
@Tomislav Tobijas thank you for your reply.
i am using Jira DC version 10.4.1
And yes i tried all the payloads above but nothing works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, I'm currently OOO, but I did a quick check. You could try checking this as well:
The
parentrelationship in Data Center often relies on the Parent field being present on the Edit Issue screen of the sub-task's field configuration....If the field is hidden or not associated with the screen, the API might ignore the update silently.
Now, if that doesn't work as well, I'd probably recommend reaching out to Atlassian Support with this. They'll probably have more info and some troubleshooting insights regarding that. 👀
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.