PUT
/
processes
/
entries
/
{process_entry_id}

Authorizations

Authorization
string
headerrequired

API Key or Token formatted as Bearer <YOUR_KEY_OR_TOKEN>

Path Parameters

process_entry_id
string
required

Id for the process entry

Body

application/json
type
enum<string>
required

ENUM to indicate what kind of data is being attached.

Available options:
TEXT,
NUMERICAL,
BOOLEAN,
FILE,
IMAGE,
DATETIME
dataset_id
string
required

Database id for the dataset that the data is associated with. This is the id that is used to associate data across component instances.

value

The value of the data being submitted

expected_value

Expected value. For boolean type data, if the value does not match the expected value, the associated entry will be marked as failing.

usl
number

ONLY FOR NUMBER TYPE DATA. Override the dataset's usl with a user specified upper spec limit. If the value exceeds the usl, the associated entry will be marked as failing.

lsl
number

ONLY FOR NUMBER TYPE DATA. Override the dataset's lsl with a user specified lower spec limit. If the value is lower than the lsl, the associated data will be marked as failing.

file_id
string

Database id for file uploads. Can be found in the return values for creating files at the files endpoint.

file_name
string

NOTE: Serial's backend will use the file extension provided here to determine the file type. Make sure your files have accurate extensions! (For example, an image renamed from image.png to image.txt will be treated as a text file)