PUT
/
components
/
instances
curl --request PUT \
  --url https://api.serial.io/components/instances \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "identifier": "<string>",
  "component_id": "<string>",
  "part_number_id": "<string>",
  "work_order_id": "<string>",
  "station_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "identifier": "<string>",
  "component_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "status": "WIP",
  "last_updated_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "part_number_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "is_archived": true,
  "work_order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "latitude": 123,
  "longitude": 123
}

Authorizations

Authorization
string
header
required

API Key or Token formatted as Bearer <YOUR_KEY_OR_TOKEN>

Headers

Validation-Only
boolean

Set this header to true if you want to validate the input and check the expected response without actually performing the action.

Body

application/json

The body is of type object.

Response

200
application/json

OK

The response is of type object.