Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Copy data from Sharepoint to Cascading custom field

Evert Morren Atlas Admin
Contributor
October 30, 2025

In Sharepoint I have a list with Countries and per country the actual project numbers. In Jira I have a custom cascading field country (parent) and project (child). How can I copy the data from Sharepoint to the Jira field on a daily sheduled base. I am looking for an API but can't found it.

1 answer

2 votes
Jason U
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 30, 2025

Hi Evert,

There’s no direct REST API dedicated to cascading field synchronization, but you can achieve this using the standard Jira Cloud REST API and a scheduled integration script or Power Automate flow from SharePoint.

Here’s how you can set it up:

  1. Use the Jira REST API to update cascading fields
    Endpoint:

    PUT /rest/api/3/issue/{issueIdOrKey}

    Example payload for a cascading field (replace customfield_12345 with your actual field ID):

    { "fields": { "customfield_12345": { "value": "CountryName", "child": { "value": "ProjectName" } } } }

    You can find your field ID by visiting:
    Jira Settings → Issues → Custom fields → ... → View field details

  2. Automate the data transfer from SharePoint

    • In Power Automate, create a daily scheduled flow.

    • Use the SharePoint “Get items” action to fetch your list data.

    • Then call the Jira REST API with an HTTP action, mapping “Country” and “Project” from SharePoint to the corresponding cascading field values.

  3. Authentication
    Use Basic Auth with API token (or OAuth 2.0 if managed centrally).

    Authorization: Basic base64(email:APIToken)

 

If you’re managing multiple fields or large datasets, a middleware like Zapier, Make (Integromat), or n8n can make this process easier to maintain.

Evert Morren Atlas Admin
Contributor
November 11, 2025

Hi Jason, Thanks for answering, I will try it in this way.

 

Regards.

Like # people like this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events