Waiting for engine...
Skip to main content

Boomi Platform API Reference (1.0.0) - ProcessScheduleStatus

Toggle Pane

Download OpenAPI Specification: Download

Run In Postman

For more information about Postman collections, forking, and making your first API call, refer to the Working with Boomi APIs on Postman page.

ProcessScheduleStatus

The Process Schedule Status object represents the status of run schedules for a deployed process.

Required Privileges

You need these privileges in the target environment:

Write access

  • API — Use the Boomi Platform API to access account data.
  • SCHEDULE_MAINTENANCE or ATOM_MANAGEMENT

Read access

  • API — Use the Boomi Platform API to access account data.
  • SCHEDULE_MAINTENANCE or ATOM_MANAGEMENT_READ_ONLY or ATOM_MANAGEMENT

Retrieves an instance of a ProcessScheduleStatus object

Retrieves the Process Schedule Status object with a specified conceptual ID.

The ordinary GET operation retrieves the Process Schedules object with a specific conceptual ID. The bulk GET operation retrieves the Process Schedules objects with specific conceptual IDs to a maximum of 100. In addition, you can obtain conceptual IDs from the QUERY operation.

Authorizations:
basicAuth
path Parameters
id
required
string

The object’s conceptual ID, which is synthesized from the process and Runtime IDs.

Responses

Response Schema:
atomId
string

A unique ID assigned by the system to the Runtime.

enabled
boolean

If set to true, the schedules are in effect. Setting it to falsestops the schedules.

id
string

The object’s conceptual ID, which is synthesized from the process and Runtime IDs.

processId
string

A unique ID assigned by the system to the process.

Response samples

Content type
{
  • "@type": "ProcessScheduleStatus",
  • "enabled": true,
  • "processId": "789abcde-f012-3456-789a-bcdef0123456",
  • "atomId": "3456789a-bcde-f0123-4567-89abcdef012",
  • "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg"
}

Modifies or updates a ProcessScheduleStatus object

Stops or resumes process run schedules for a deployed process.

The body of the request must specify not only the conceptual Process Schedule Status object ID but also the Runtime and process IDs. You can obtain the object ID from a QUERY operation.

You must have the Runtime Management privilege and the Scheduling privilege to perform the UPDATE operation. If you have the Runtime Management Read Accessprivilege, you cannot update the status of process run schedules.

Authorizations:
basicAuth
path Parameters
id
required
string
Request Body schema:
optional
atomId
string

A unique ID assigned by the system to the Runtime.

enabled
boolean

If set to true, the schedules are in effect. Setting it to falsestops the schedules.

id
string

The object’s conceptual ID, which is synthesized from the process and Runtime IDs.

processId
string

A unique ID assigned by the system to the process.

Responses

Response Schema:
atomId
string

A unique ID assigned by the system to the Runtime.

enabled
boolean

If set to true, the schedules are in effect. Setting it to falsestops the schedules.

id
string

The object’s conceptual ID, which is synthesized from the process and Runtime IDs.

processId
string

A unique ID assigned by the system to the process.

Request samples

Content type
{
  • "processId": "789abcde-f012-3456-789a-bcdef0123456",
  • "atomId": "3456789a-bcde-f0123-4567-89abcdef012",
  • "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg",
  • "enabled": true
}

Response samples

Content type
{
  • "@type": "ProcessScheduleStatus",
  • "processId": "789abcde-f012-3456-789a-bcdef0123456",
  • "atomId": "3456789a-bcde-f0123-4567-89abcdef012",
  • "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg",
  • "enabled": true
}

Retrieves multiple ProcessScheduleStatus 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 (ProcessScheduleStatus)
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 ProcessScheduleStatus 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: processId, atomId

required
object
required
ProcessScheduleStatusSimpleExpression (object) or ProcessScheduleStatusGroupingExpression (object) (ProcessScheduleStatusExpression)
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: "processId" "atomId"
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 (ProcessScheduleStatus)

Request samples

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

Response samples

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

Retrieves additional results for a ProcessScheduleStatus 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 (ProcessScheduleStatus)

Response samples

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