Component Instances
Work Orders
Processes
Storage
Properties
Fields
Part Numbers
Part Numbers
Create Part Number
Endpoint for creating new part numbers
POST
/
part-numbers
curl --request POST \
--url https://api.serial.io/part-numbers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"part_number": "<string>",
"description": "<string>",
"component_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"part_number": "<string>",
"is_active": true,
"created_at": "2023-11-07T05:31:56Z",
"last_edited_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"component_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {},
"last_edited_user_id": "<string>"
}
Authorizations
API Key or Token formatted as Bearer <YOUR_KEY_OR_TOKEN>
Body
application/json
Response
200 - application/xml
OK
Part Number Data
curl --request POST \
--url https://api.serial.io/part-numbers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"part_number": "<string>",
"description": "<string>",
"component_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"part_number": "<string>",
"is_active": true,
"created_at": "2023-11-07T05:31:56Z",
"last_edited_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"component_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {},
"last_edited_user_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.