PUT
/
processes
/
entries
/
{process_entry_id}
curl --request PUT \
  --url https://api.serial.io/processes/entries/{process_entry_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "TEXT",
  "dataset_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "value": "<string>",
  "expected_value": "<string>",
  "usl": 123,
  "lsl": 123,
  "file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "file_name": "<string>"
}'

Authorizations

Authorization
string
header
required

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

The body is of type object.

Response

200

OK