Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This POST service will perform the same action found on the Build Request Form. It will initiate a request to build the project selected in the qualifiedProjectName. The service will return the workflowRequestId which can be used by the getWorkflowRequestStatus call to determine when the workflow is complete.

This page includes examples for Full and 937788086 buildProject deploy project builds.

Info
titleAPI URL
http://host:port/flexdeploy/rest/workflow/buildProject

...

Info
titleBuild All for Partial Deploy Project

If trying to build a Partial Deploy project with all of the files in the repository (equivalent to Build All button in the UI), then simply remove the "projectFiles" list, and the REST API will detect that the project is meant for partial deploys automatically and perform the build with all of the files.

Parameters

Parameter

Required

Type

Description

authentication

Y

Object

See Common Parameters below.

environmentCode

Y

String

This is the environment code, not the environment name that you see on most screens.

qualifiedProjectName

Y

String

The qualified project name starts with /FlexDeploy and includes any sub folder, then the application and finally the project.

streamName

Y

String

The name of the Stream.

forceBuild

N

Boolean

Values are true or false. Indicates that the build should occur even if there are not SCM changes. Defaults to false.

relatedTicketsNStringList of Issue Tracking System tickets.
workflowVersionOverride

N

String

Optionally the version of the workflow can be overridden.

inputs

N

Array

See Common Parameters below.

flexFieldsNStringSee Common Parameters below.
projectFilesN1Array

Required for partial deployment builds.

An array of objects with 2 fields each: path and scmRevision.

    pathY2StringFully qualified file path that is required inside the projectFiles parameter.
    scmRevisionNLong

Optionally include the revision number that you would like to use for the build.

If it is not indicated, then FlexDeploy will use the latest revision as the default.

packageNameNString

Unique name to identify a build for partial deployments project. Defaults to the project version if no value is provided.

If package name is provided without project files, files configured in that project will be used.

If package name is provided with project files, then input is used for build and package definition is updated with this projectFiles list.

releaseNameNStringName of the release to which this build is related to. If specified, a new snapshot is going to be created.

...