Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8231329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T17:26:58+00:00 2026-06-07T17:26:58+00:00

I am working with the Jira SOAP API, and I have managed to read

  • 0

I am working with the Jira SOAP API, and I have managed to read from an issue and to create new issues. However, I am having trouble with updating the fields of an already existing issue. I make changes to the fields, but they do not persist after the program stops running.

I know that the method to use is likely the updateIssue(…) method, but I haven’t been able to attempt using it, as I don’t know what to pass for the last parameter. I looked at the documentation, but don’t understand what the RemoteFieldValue[] is.

Can someone please tell me how I could create a RemoteFieldValue[] that I could pass to the updateIssue method in order to update basic fields like summary, description, etc.?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T17:27:00+00:00Added an answer on June 7, 2026 at 5:27 pm

    To update basic fields using Jira SOAP you need to use updateIssue() (as you suspected).

    updateIssue(java.lang.String token, java.lang.String issueKey, RemoteFieldValue[] actionParams) 
    

    RemoteFieldValue constructor takes two parameters: fieldID and newFieldValues

    public RemoteFieldValue(java.lang.String fieldID,
                            java.lang.String[] newFieldValues)
    

    Where fieldID for standard fields is a name of the field (“summary”, “description”, etc.)

    Here is an example:

    List<RemoteFieldValue> actionParams = new List<RemoteFieldValue>();
    
    RemoteFieldValue description = new RemoteFieldValue { 
        id = "description", 
        values = new string[] { "here is new description" } };
    
    actionParams.Add(description);
    
    jiraSoapService.updateIssue(token, issueKey, actionParams.ToArray());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a tool in C# that interfaces the JIRA SOAP API. I
i am working with php and jira soap api and i wanted to know,
Working with Reporting Services 2008 r2. So here's my issue: We have 5 reports
I'm working with the Hashed Home Folder Provider: https://issues.alfresco.com/jira/browse/ALF-4727 It works great if I'm
There are currently many projects within Jira. Some developers might have tasks or issues
Working with COM interop, I can call a managed function from within unmanaged code.
I'm trying to attach some files to a Jira using the Soap API. I
We're using JIRA with SVN. We didn't have post-commit hooks working right, so some
I'm working on a JIRA implementation and need to make use of the API.
I am trying to develop a plugin for jira and I'm having issues with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.