Create item
documentedCreate a new item in the Cheqroom inventory.
POST /api/v2_5/itemsItemsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.cheqroom.com/api/v2_5/items" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$title}}", "description": "{{$description}}", "item_type_id": "{{$item_type_id}}", "serial_number": "{{$serial_number}}", "barcode": "{{$barcode}}", "location_id": "{{$location_id}}", "purchase_price": {{$purchase_price}}, "purchase_date": "{{$purchase_date}}"}'