curl --request PUT \
--url https://api.skulabs.com/item/upsert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item": {}
}'{
"success": true,
"_id": "507f1f77bcf86cd799439011",
"sku": "<string>",
"notice": "<string>"
}Create a new item or update an existing one based on the provided identifier.
curl --request PUT \
--url https://api.skulabs.com/item/upsert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"item": {}
}'{
"success": true,
"_id": "507f1f77bcf86cd799439011",
"sku": "<string>",
"notice": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Item data object to upsert (matched by SKU)