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 Partial deploy project builds.

Sample
Info
titleAPI URL
http://host:port/flexdeploy/rest/workflow/buildProject
Code Block
languagejs
title

Full Project BuildSample JSON Request

Anchor

...

Full

...

Full


{

...

"authentication":

...

{

...

"userId":

...

"fdadmin",

...

"password":

...

"password1"

...

},

Opening bracket


Authentication section, used on all types of requests.





"environmentCode":

...

"DEV",

...

"qualifiedProjectName":

...

"/FlexDeploy/folder1/

...

myApp/

...

SimpleProj",

...

"streamName":

...

"trunk",

...

Required parameters for full deployment.

If building a partial deployment project, see the Partial deployment example instead.


Build in the DEV environment.

The full path of the FlexDeploy project to build.

Build from stream trunk.





"workflowVersionOverride":

...

"1.

...

8",

"forceBuild": true,


"inputs":

...


[
{
"name":

...

"input1",

...

"value":

...

"

...

xyz"
},
{
"name":

...

"

...

inp2",

...

"value":

...

Code Block
titleSample JSON Request for Partial Build
{
   "authentication":
    {
       "userId": "fdadmin",
       "password": "password1"
    },
   "environmentCode": "DEV",
   "forceBuild": "true",
   "qualifiedProjectName": "FlexDeploy/TestApp/MyProj",
   "streamName": "trunk",
   "workflowVersionOverride": "1.02",
   "inputs": [
    {
       "name": "input1",
       "value": "asd"
    },
    {
       "name": "input2",
       "value": "zxc"
    }],
   "projectFiles": [
	{
	  "path": "/java/xxt/oracle/apps/ak/xxperson/webui/xxPersonMainCO.java"
	},
	{
	  "path": "/java/xxt/oracle/apps/ak/xxperson/webui/managePersonCO.java",
      "scmRevision": "1515"
	}]
}
Info

Notice that the projectFiles parameter is included to indicate to FlexDeploy that this request is for a Partial Build.

123
}
]


Optionally, include any of this information.

Verify that your json is valid; check for trailing commas if you don't include this section.


Version of the workflow to run. Defaults to the currently active version.

boolean equivalent to "Force Build" checkbox in the UI. Defaults to false.



List of workflow inputs to set

An input named "input1" is being set to "xyz"


An input named "inp2" is being set to 123


}Closing bracket

Partial Project BuildSample JSON Request

Anchor
Partial
Partial


{

"authentication": {

"userId":"fdadmin",

"password": "password1"

},

Opening bracket


Authentication section, used on all types of requests.





"environmentCode":"DEV",

"qualifiedProjectName":"/FlexDeploy/folder1/myApp/SimpleProj",

"streamName": "trunk",

"projectFiles":

[ { "path": "/java/xxt/oracle/xxPersonMainCO.java" }, { "path": "/java/xxt/oracle/apps/managePersonCO.java", "scmRevision": "1515" }

]

Required parameters for full deployment.

If building a partial deployment project, see the Partial deployment example instead.


Build in the DEV environment.

The full path of the FlexDeploy project to build.

Build from stream "trunk".

List of project files to include in the build, and optionally their versions.



Include the file with path "/java/xxt/oracle/xxPersonMainCO.java"


Include SCM revision 1515 of file managePersonCO.java/





"workflowVersionOverride":"1.8",

"forceBuild": true,


"inputs":
[
{
"name":"input1","value": "xyz"
},
{
"name":"inp2","value": 123
}
]


Optionally, include any of this information.

Verify that your json is valid; check for trailing commas if you don't include this section.


Version of the workflow to run. Defaults to the currently active version.

boolean equivalent to "Force Build" checkbox in the UI. Defaults to false.



List of workflow inputs to set

An input named "input1" is being set to "xyz"


An input named "inp2" is being set to 123


}Closing bracket


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.

forceBuild

Y

Boolean

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

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.

workflowVersionOverride

N

String

Optionally the version of the workflow can be overridden.

inputs

N

List

See Common Parameters below.

projectFilesN*ListA parameter comprised of

Required for partial deployment builds.

A list of objects with 2 fields each: path and scmRevision

. It is included to indicate a Partial Build

.

     path
NY*StringFully qualified file path that is required only if inside the projectFiles parameter is used.
     scmRevision
NLong

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

; if

.

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

Insert excerpt
Workflow Execution REST API
Workflow Execution REST API
nopaneltrue

...