For the complete documentation index, see llms.txt. This page is also available as Markdown.

Production Runs

Get Production Runs

get

Returns a list of all production runs in your organization.

Authorizations
AuthorizationstringRequired
Query parameters
cursorstringOptional
machinestring · uuid[] · max: 50 · nullableOptional

If not set, production runs for all machines will be considered.

product-external-idstring · nullableOptional

If not set, all products will be considered.

Example: 301292
productstring · uuid · nullableOptional

If not set, all products will be considered.

Example: 4646d168-a98b-447e-834a-d36dd1f33eb4
production-order-external-idstring · nullableOptional

If not set, all production orders will be considered.

Example: FA1
startstring · date-time · nullableOptional

Only production runs being executed starting at start will be returned. If not set, no lower time bound will be assumed.

Example: 2023-07-19T19:39:46.735269+02:00
endstring · date-time · nullableOptional

Only production runs being executed up to end will be returned. If not set, no upper time bound will be assumed.

uuidstring · uuid[] · max: 50 · nullableOptional

If not set, production runs for all UUIDs will be considered.

qstring · nullableOptional

Filter production runs based on a partial match of the external id of the production order or product. Use product-external-id: and production-external-id: prefixes to specify the field to search in.

Example: product-external-id:301292Pattern: ^(?P<product_external_id>product-external-id:)(?P<product_external_id_value>.*)|^(?P<production_order_external_id>production-order-external-id:)(?P<production_order_external_id_value>.*)
Responses
200

Successful Response

application/json
get/v2/production-runs

Get Production Run

get

Returns details for a specific production run.

Authorizations
AuthorizationstringRequired
Path parameters
uuidstring · uuidRequired
Responses
200

Successful Response

application/json
uuidstring · uuidRequired

The UUID of the production run.

Example: 123e4567-e89b-12d3-a456-426614174000
machinestring · uuidRequired

The UUID of the machine the production run was executed on.

production_orderstringRequired

The identifier of the production order.

Example: FA1234
productstring · uuidRequired

The UUID of the product that was produced.

startstring · date-timeRequired

The start of the production run in ISO8601 format with timezone info.

endstring · date-time · nullableRequired

The end of the production run in ISO8601 format with timezone info. If the value of this field is null, the production run is not yet finished.

average_throughputnumber · nullableRequired

The average throughput of the production run excluding downtimes.

get/v2/production-runs/{uuid}

Last updated