Sign in

Reserve item

documented

Create a new reservation for an item.

POST /api/v2_5/reservationsReservationsno implementation yet0 runs
No 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/reservations" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{ "title": "{{$title}}", "location_id": "{{$location_id}}", "from": "{{$from}}", "to": "{{$to}}", "contact_id": "{{$contact_id}}", "items": [ { "item_id": "{{$item_id_1}}", "quantity": {{$quantity_1}} } ], "comment": "{{$comment}}", "custom_fields": {{$custom_fields}} }'
Reserve item · Cheqroom · OpenIntegrations