Waiting for engine...
Skip to main content

Boomi Platform API Reference (1.0.0) - Deployment

Toggle Pane

Download OpenAPI Specification: Download

Deployment (Legacy deployment, Deprecated)

The Deployment object represents a component deployment. caution The Deployment object is a deprecated API and should no longer be used. Boomi recommends that you take advantage of the API functionality provided by the Packaged Component and Deployed Package objects instead. This change is to support the introduction of Packaged Component Deployments, which leverages the way Legacy account users deploy components to environments. For more information about Boomi's API object deprecation status, refer to the topic API deprecation and versioning policy. Boomi encourages administrators of Legacy deployment accounts to take advantage of the new Packaged Components Deployment by upgrading their accounts. Learn more about the new Deployment workflow and How to upgrade Legacy accounts to use the new deployment workflow. In the meantime, do not use the replacement API without first converting your Legacy account.

You cannot deploy processes that contain Process Route components as a unit with the API. You must deploy the parent process, the Process Route component, and any subprocesses that the process route calls independently.

Creates a Deployment object

The Deployment object is a deprecated API and should no longer be used. Boomi recommends that you take advantage of the API functionality provided by the Packaged Component and Deployed Package objects instead.

Authorizations:
basicAuth
Request Body schema:
optional
componentId
required
string
componentType
required
string
deployedBy
required
string
deployedOn
required
string <date-time>
digest
required
string
environmentId
required
string
id
required
string
notes
required
string
processId
required
string
current
boolean
listenerStatus
string
Enum: "RUNNING" "PAUSED"
message
string
version
integer <int32>

Responses

Response Schema:
componentId
required
string
componentType
required
string
deployedBy
required
string
deployedOn
required
string <date-time>
digest
required
string
environmentId
required
string
id
required
string
notes
required
string
processId
required
string
current
boolean
listenerStatus
string
Enum: "RUNNING" "PAUSED"
message
string
version
integer <int32>

Request samples

Content type
{
  • "environmentId": "456789ab-cdef-0123-4567-89abcdef0123",
  • "componentId": "789abcde-f012-3456-789a-bcdef0123456",
  • "notes": "via RESTish request: Re-deployment of version 54"
}

Response samples

Content type
{
  • "@type": "Deployment",
  • "id": "89abcdef-0123-4567-89ab-cdef01234567",
  • "environmentId": "456789ab-cdef-0123-4567-89abcdef0123",
  • "processId": "789abcde-f012-3456-789a-bcdef0123456",
  • "componentId": "789abcde-f012-3456-789a-bcdef0123456",
  • "componentType": "process",
  • "current": true,
  • "notes": "via RESTish request: Re-deployment of version 54",
  • "version": 55,
  • "deployedOn": "2013-09-23T16:33:53.413Z",
  • "deployedBy": "user123@company.biz"
}

Retrieves an instance of a Deployment object

The Deployment object is a deprecated API and should no longer be used. Boomi recommends that you take advantage of the API functionality provided by the Packaged Component and Deployed Package objects instead.

Authorizations:
basicAuth
path Parameters
id
required
string

Responses

Response Schema:
componentId
required
string
componentType
required
string
deployedBy
required
string
deployedOn
required
string <date-time>
digest
required
string
environmentId
required
string
id
required
string
notes
required
string
processId
required
string
current
boolean
listenerStatus
string
Enum: "RUNNING" "PAUSED"
message
string
version
integer <int32>

Response samples

Content type
{
  • "@type": "Deployment",
  • "id": "89abcdef-0123-4567-89ab-cdef01234567",
  • "digest": "abb98d1a5b659afbe77cc361cb255c8b",
  • "environmentId": "456789ab-cdef-0123-4567-89abcdef0123",
  • "processId": "789abcde-f012-3456-789a-bcdef0123456",
  • "componentId": "789abcde-f012-3456-789a-bcdef0123456",
  • "componentType": "process",
  • "current": true,
  • "notes": "Added Message step",
  • "version": 54,
  • "deployedOn": "2013-08-13T17:13:46Z",
  • "deployedBy": "user123@company.biz"
}

Retrieves multiple Deployment objects by identifier

To learn more about bulk, refer to the topic Bulk GET operations.

Authorizations:
basicAuth
Request Body schema:
optional
Array of objects (BulkId)
type
string
Enum: "GET" "DELETE" "UPDATE" "CREATE"

Responses

Response Schema:
Array of objects
Array
required
object (Deployment)
index
integer <int32>
id
string
statusCode
integer <int32>
errorMessage
string

Request samples

Content type
{
  • "request": [
    • {
      }
    ],
  • "type": "GET"
}

Response samples

Content type
{
  • "response": [
    • {
      }
    ]
}

Queries for a Deployment object(s)

For general information about the structure of QUERY filters, their sample payloads, and how to handle the paged results, refer to Query filters and Query paging.

Authorizations:
basicAuth
Request Body schema:
optional

Possible properties include: environmentId, processId, componentId, componentType, current

required
object
required
DeploymentSimpleExpression (object) or DeploymentGroupingExpression (object) (DeploymentExpression)
One of
operator
required
string
Enum: "EQUALS" "LIKE" "NOT_EQUALS" "IS_NULL" "IS_NOT_NULL" "BETWEEN" "GREATER_THAN" "GREATER_THAN_OR_EQUAL" "LESS_THAN" "LESS_THAN_OR_EQUAL" "CONTAINS" "NOT_CONTAINS"
property
required
string
Enum: "environmentId" "processId" "componentId" "componentType" "current"
argument
Array of strings

Responses

Response Schema:
numberOfResults
integer <int32>
queryToken
string

By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request.

Array of objects (Deployment)

Request samples

Content type
Example
{
  • "QueryFilter": {
    • "expression": {
      }
    }
}

Response samples

Content type
{
  • "numberOfResults": 100,
  • "@type": "QueryResult",
  • "result": [
    • {
      },
    • {
      }
    ]
}

Retrieves additional results for a Deployment query

To learn about using queryMore, refer to the topic Query paging.

Authorizations:
basicAuth
Request Body schema: text/plain
required
string

Responses

Response Schema:
numberOfResults
integer <int32>
queryToken
string

By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request.

Array of objects (Deployment)

Response samples

Content type
{
  • "numberOfResults": 100,
  • "@type": "QueryResult",
  • "result": [
    • {
      },
    • {
      }
    ]
}