How to use the Jira Align REST API to update the "startInitiationDate" of a Portfolio Epic

Still need help?

The Atlassian Community is here for you.

Ask the community

Summary

It is possible to use the Epic REST API endpoint ( /align/api/2/Epics) to update the startInitiationDate field of a Portfolio Epic. this article provides the syntax to be used with the PATCH API call / method.

(info) As which API client is being used to make the call is open to choice, this article does not discuss the specifics of making the call using a specific client


Environment

Jira Align


Solution

Use the below format to update "startInitiationDate" of a Portfolio Epic using the PATCH method.


{
    "op": "replace",
    "path": "/startInitiationDate",
    "value": "2023-10-10T13:10:31.648Z"
  }


(info) Apply the Patch call to data from your own environment by using the ID of the Portfolio Epic being modified

(warning) It is recommended to use a GET API call to review and take note of the current data for a specific Epic before attempting to modify it using a PATCH call


Related Content:

Getting started with the REST API 2.0






Last modified on Feb 27, 2024

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.