GET
/
processes
/
entries
curl --request GET \
  --url https://api.serial.io/processes/entries \
  --header 'Authorization: Bearer <token>'
[
  {
    "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

Authorization
string
header
required

API Key or Token formatted as Bearer <YOUR_KEY_OR_TOKEN>

Query Parameters

process_id
string

Get process entries related to a particular process id

process_name
string

Get process entries by name

station_id
string

Get process entries related to a station

is_pass
boolean

Get process entries by passing status

operator_id
string

Get process entries by operator id

upload_error
string

Get process entries by upload_error status

id
string

Get process entry by its Serial database id

Response

200 - application/json

OK

The response is of type object[].