Component Instances
Work Orders
Processes
Storage
Properties
Fields
Part Numbers
Processes
Update Process Entry
Complete Process Entry
PATCH
/
processes
/
entries
/
{process_entry_id}
curl --request PATCH \
--url https://api.serial.io/processes/entries/{process_entry_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"is_pass": true,
"cycle_time": 123,
"is_complete": true
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"unique_identifier_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"process_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"timestamp": "<string>",
"station_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_pass": true,
"operator_id": "<string>",
"process_revision": 123,
"upload_error": true,
"cycle_time": 123,
"override_user_id": "<string>"
}
Authorizations
API Key or Token formatted as Bearer <YOUR_KEY_OR_TOKEN>
Path Parameters
Id for the process entry
Body
application/json
Response
200
application/json
OK
A Process Entry object
curl --request PATCH \
--url https://api.serial.io/processes/entries/{process_entry_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"is_pass": true,
"cycle_time": 123,
"is_complete": true
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"unique_identifier_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"process_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"timestamp": "<string>",
"station_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_pass": true,
"operator_id": "<string>",
"process_revision": 123,
"upload_error": true,
"cycle_time": 123,
"override_user_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.