How to add multiple Programs to Program Increment using Jira Align API
Platform Notice: Cloud Only - This article only applies to Atlassian products on the cloud platform.
Summary
This article is prepared to guide you on adding multiple Programs to a particular Release via API.
Solution
We can add multiple Programs by adding the "programId" to a particular Release via the/align/api/2/Releases/IDAPI endpoint.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PATCH {{baseUrl}}/align/api/2/Releases/ID
[
{
"op": "add",
"path": "/programIds/-",
"value": ProgramID-A
},
{
"op": "add",
"path": "/programIds/-",
"value": ProgramID-B
}
]
Updated on March 18, 2025
Was this helpful?
Still need help?
The Atlassian Community is here for you.