Build a project
Builds a project. You can use the following endpoint to deploy the project to an environment:
/api/project_builds/:id/deploy
.
Path parameters
managed_user_id
Embedded customer ID (external ID). The External ID must be URL encoded and prefixed with an E
. For example, EA2300
.
id
Project ID. This parameter accepts a valid project_id
or a valid folder_id
, formatted as f\{:folder_id}
, for example: f660222
.
Headers
Authorization
Bearer authentication of the form Bearer <token>, where token is your auth token.
Request
This endpoint expects an object.
description
A brief description of the build.
include_test_cases
Instructs the build to include test cases or not. Default: false
.
Response
Success reply
id
Build ID.
created_at
Timestamp in ISO 8601 format.
updated_at
Timestamp in ISO 8601 format.
description
Description of the build.
project_id
Project ID.
state
Status of the build. Possible values are: pending
, success
, and failed
.
performed_by_name
Name of the user who initiated the build.
download_url
URL to download the package. Returns null
if the build is not complete.