Home & Global Resources
Blueprint Assess
Agentic RPA
Getting Started
Settings & Administration
Overview
Scenario Demonstration
Blueprint Agent
Features
Process Details
Blueprint Migrate
Getting Started
The Blueprint User Interface
Change Your Password
Open a Project
Organize Artifacts and Assets
Close a Project
Status Indicators
Jobs
Exporting from Source RPA Tools
How to export a UiPath Automation Project from UiPath Orchestrator
How to export .bprelease files from Blue Prism
Blue Prism VBO Matching on Import
How to Export .zip files from Automation A360 Control Room
Importing
Exporting
RPA Export from Blueprint
Variable Prefixing
Why We Create Multiple Similar Subflows During Migration
Understanding Wrapper Flows in Power Automate Desktop
Setting up defaultRunDotNetScriptReferences
AsEnumerable Support
XmlDocument Support
Bulk Reimport/Recalculate
Metabot Migration - Best Practices
Artifacts Management
Base Artifact Types
Creating and Managing Artifacts
View and Edit Artifacts in the Utility Panel
Concurrent User Activity in Artifacts (Steal Lock)
Using Descendants View
Global Actions
Rules
Introduction to Rules
Using Rules
Using Rules CSV
Common Procedures
Custom Action Mapping
Reuse Mapping to Power Automate Desktop
Manual Reuse
TODO, Error, and Robin Mapping
Script Mapping
Variable Name Dependency Mapping
Variable Renaming and Initialization
DLL/Method Invocation Mapping
Unresolved References
AA Metabots
Work Queues Mapping
Rules Wizard
Solutions & Best Practices
Working with Migration Output in Power Automate Desktop (PAD)
Blueprism to PAD Migration Output Details
UiPath to PAD Migration Output Details
AA to PAD Migration Output Details
RPA Value-Mapping Assessments
Why Choose Blueprint Cloud vs. On Premise ?
Setting up SAP for RPA
API & Developer Resources
REST API Request Header and Parameters
REST API Request Body and Parameters
REST API - Listing Artifacts in the Request Body
REST API - Defining an Artifact in the Request Body
REST API - Defining a Comment in the Request Body
REST API - Defining a Reply in the Request Body
REST API - Defining a Trace in the Request Body
REST API - Filter Parameter
REST API - Defining a User in the Request Body
REST API Requests
REST API - Add Attachment to Subartifact Request
REST API - Get Artifact Request
REST API - Add Traces Request
REST API - Get Project by Id Request
REST API - Update Custom Choice-Property Type Request
REST API - Publish Comments Request
REST API - Publish Artifact Request
REST API - Update Comment Request
REST API - Delete User Request
REST API - Add Comment Request
REST API - Close Review Request
REST API - Get Discussion Status Request
REST API - Update Reply Request
REST API - Get Attachment Request
REST API - Delete Comment Request
REST API - Create Project Request
REST API - Get Group Request
REST API - Rate Comment Request
REST API - Get Child Artifacts of Artifact Request
REST API - Discard Artifacts Request
REST API - List Artifacts Request
REST API - Rate Reply Request
REST API - Move Artifact Request
REST API - Delete Attachment Request
REST API - List Projects Request
REST API - Get Blueprint Product Version Request
REST API - Update Standard Choice Property Request
REST API - Get Review Request
REST API - Reply to Comment Request
REST API - Update User Request
REST API - Get Collection Request
REST API - Delete Artifact Request
REST API - List Collections Request
REST API - Authenticate Request
REST API - Get Artifact Type Request
REST API - List Artifact Types Request
REST API - Delete Reply Request
REST API - Get Root Artifacts of Project Request
REST API - Add Attachment Request
REST API - Create User Request
REST API - List Reviews Request
REST API - List Groups Request
REST API - Get User Request
REST API - Delete Traces Request
REST API - Add Artifact Request
REST API - List Users Request
REST API - Get Artifact Image Request
REST API - Update Artifacts Request
REST API - List Unpublished Artifacts Request
REST API HTTP Methods
REST API - HTTP HEAD Method
REST API - HTTP DELETE Method
REST API - HTTP GET Method
REST API - HTTP POST Method
REST API HTTP Status Codes
REST API - HTTP PATCH Method
Blueprint REST API
REST API Quick Start Example
REST API Requests and Responses
REST API Security and Authentication
REST API Known Issues & Constraints
REST API Requests
REST API Resources
REST API - Defining an ALM Job in the Request Body
Dashboards & Reports
Statistics Report Options
Using Scope and View
Statistics Dashboard
Statistics Reports
Applications Dashboard
Applications Report
Estimator Dashboard
Estimator Reports
How to Change the Main Process Label for Estimations
Bulk Reporting
Call Trees
Blueprint + PowerBI Dashboards
How to Create Microsoft Power Automate RPA Migration Estimates with Blueprint
Licensing
Settings & Administration
Overview of Blueprint Settings
System Reports
System Reports
License and Activity Reporting
User List
Project Activity
User Roles
Artifact Map
Project Usage
User Activity Report
Audit Log
System Logs
User Management
Creating and Managing Users
Creating and Managing Groups
Creating and Managing Instance Administrator Roles
Creating and Managing Project Administrator Roles
RPA Management
Microsoft 365 Authentication Settings
Integration Reporting
Migrate - Import/Export
Migrate - Dashboards
Migrate Settings
Advanced Settings
Projects
Installation
Blueprint Installation Guide
System Requirements
Supported Third-Party Components
Azure App Registration (Power Automate Export)
Release Notes
- All Categories
- Blueprint Migrate
- API & Developer Resources
- REST API - Defining an ALM Job in the Request Body
REST API - Defining an ALM Job in the Request Body
How to define an ALM job in the request body using the Blueprint REST API.

When you are making a request to create an ALM job, you must define the ALM job in the request body.
Two types of jobs can be defined:
- A push to an ALM target
OR - A change summary for a push to an ALM target.
Initiating a push to an ALM target and initiating a change summary are separate ALM jobs that are a part of the same overarching action: efficiently exporting artifacts to an ALM system. Defining an ALM push sets up the export whereas defining a change summary involves choosing conflict resolutions for the export.
Method
The ALM job must be submitted using the HTTP POST method.
Parameters
The following parameters must be specified within the AlmJobParameters
element:
AlmJobType
: Identifies the type of ALM job. The ALM job value can either beAlmExport
orChangeSummary
.JobParameters
: IfAlmJobType
equalsChangeSummary
, you must specify theChangeSummaryParameters
value in theJobParameters
parameter. IfAlmJobType
equalsAlmExport
, you must specify theAlmExportParameters
value in theJobParameters
parameter. For more information about theJobParameters
element, see the following section.
JobParameters Element
To specify property values for your ALM job, include the JobParameters
element within the AlmJobParameters
element. The JobParameters
element can contain various parameters, including the following:
AlmRootPath
: Identifies the root path of the project folder which is used as a root for the ALM push. For example:Enterprise Projects/BP Air
. (Change summary jobs only.)AlmRootPathId
: This numerically identifies the folder that is used as a root for the ALM push. Although this parameter is optional, we recommend setting the value if you know ID of the target folder in QC/ALM system. (Change summary jobs only.)BaselineOrReviewId
: Numerically identifies the baseline or review included in the ALM job. (Required. Change summary jobs only.)IsFirstPush
: A boolean (true
orfalse
) that identifies whether this is the first push to ALM or not. The default value istrue
. (Change summary jobs only.)IsImageGenerationRequired
: A boolean (true
orfalse
) that allows you to specify whether you want images generated for any graphical artifacts in the export. The default value istrue
. (Change summary jobs only.)ConflictResolutionRule
: Specifies how you want to resolve any conflicts that could arise when pushing artifacts to the ALM system. Specify theOverride
value if you want any artifacts you are pushing to override identical existing artifacts in the target system. Specify theKeep
value if you do not want to override the artifacts in the target system. (Required. ALM export jobs only.)ChangeSummaryJobId
: Numerically identifies the change summary job. (Required. ALM export jobs only.)
The following images show how particular JobParameters
elements correspond to the ALM Export dialog within Blueprint.
Here is an image of the second screen that appears during an ALM export:

Here is an image of the third screen that appears during an ALM export:

Examples
AddALMJob Examples
Here is an example of a request body in XML format:
<AlmJobParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.blueprintsys.com/blueprint/api/v1">
<AlmJobType>AlmExport</AlmJobType>
<JobParameters i:type="AlmExportParameters">
<ConflictResolutionRule>Keep</ConflictResolutionRule>
<ChangeSummaryJobId>1704</ChangeSummaryJobId>
</JobParameters>
</AlmJobParameters>
Here is an example of a request body in JSON format:
{
"AlmJobType": "AlmExport",
"JobParameters": {
"Type": "AlmExportParameters",
"ConflictResolutionRule": "Keep",
"ChangeSummaryJobId": "1704"
}
}
Change Summary
Here is an example of a request body in XML format:
<AlmJobParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.blueprintsys.com/blueprint/api/v1">
<AlmJobType>ChangeSummary</AlmJobType>
<JobParameters i:type="ChangeSummaryParameters">
<AlmRootPath>Enterprise Projects/BP Air</AlmRootPath>
<AlmRootPathId>16</AlmRootPathId>
<BaselineOrReviewId>3506300</BaselineOrReviewId>
<IsFirstPush>true</IsFirstPush>
<IsImageGenerationRequired>true</IsImageGenerationRequired>
</JobParameters>
</AlmJobParameters>
Here is an example of a request body in JSON format:
{
"AlmJobType": "ChangeSummary",
"JobParameters": {
"Type": "ChangeSummaryParameters",
"IsImageGenerationRequired": false,
"IsFirstPush": true,
"BaselineOrReviewId": 3506300,
"AlmRootPathId": 16,
"AlmRootPath": "Enterprise Projects/BP Air"
}
}
How did we do?
REST API Resources