How to update value of custom field in JIRA cloud

Hi All,

I am doing an automation of JIRA integration between cloud and server. Using UiPath JIRA connector, I can do most of the tasks. But I am unable to update custom field. Is there any way to update custom field?

Thanks,
Meena

@Meena_Muthukrishnan1

Welcome to the community

are you using update issue activity? ideally once the connection is there it should be showing all the mandate and custom fields as well on canvas

cheers

Thanks @Anil_G for the reply. Found the solution.

1 Like

Are you able to update created by field in Jira using this approach?

you can directly use the JIRA REST API with the HTTP Request activity.

  1. Get your custom field ID
  2. Build the JSON Payload
    Example payload to update a custom field:

{
“fields”: {
“customfield_12345”: “New Value”
}
}
3. Configure HTTP Request in UiPath
Method: PUT.
4. Use the HTTP Request Activity

Hi @Meena_Muthukrishnan1

Could you please share the solution that worked for you?
And also mark it as solution so this topic can be closed and help others with similar issue.

Regards
Sonali

1 Like