Component Instances
Work Orders
Processes
Storage
Properties
Fields
Part Numbers
Processes
Create Process Entry
Create a new, unsubmitted process entry. Returns the newly created process entry.
POST
/
processes
/
entries
curl --request POST \
--url https://api.serial.io/processes/entries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"process_id": "33a89040-f634-4540-a873-5852046e8112",
"component_instance_id": "55162f13-dcba-4e0e-95a8-e8577f6f5285",
"timestamp": "2019-08-24T14:15:22Z",
"station_id": "72b21aa2-cf73-4097-91c1-d6db1b216a9e",
"operator_id": "b3a87089-c5a4-4b5a-846a-dbafc996781c",
"cycle_time": 0,
"override_user_id": "cc4f16cb-6d7e-4ea1-a039-493d950a1b27"
}'
{
"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>
Body
application/json
The body is of type object
.
Response
200
application/json
OK
A Process Entry object
curl --request POST \
--url https://api.serial.io/processes/entries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"process_id": "33a89040-f634-4540-a873-5852046e8112",
"component_instance_id": "55162f13-dcba-4e0e-95a8-e8577f6f5285",
"timestamp": "2019-08-24T14:15:22Z",
"station_id": "72b21aa2-cf73-4097-91c1-d6db1b216a9e",
"operator_id": "b3a87089-c5a4-4b5a-846a-dbafc996781c",
"cycle_time": 0,
"override_user_id": "cc4f16cb-6d7e-4ea1-a039-493d950a1b27"
}'
{
"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.