Loading...
Loading...
Rently CLI — manage car rental bookings, customers, fleet, operations, and more via the rently command-line tool. Use when the user asks about bookings, customers, cars, deliveries, returns, payments, or any Rently car rental operations.
npx skill4agent add rentlysoft/rently-skills rentlyrentlyrently auth statusrently info places--json-body# Option 1: Individual parameters (simpler for flat data)
rently bookings cancel --booking-id 2300 --lastname Doe
# Option 2: Raw JSON (required for nested objects like Customer, arrays, etc.)
rently bookings cancel --json-body '{"BookingId":2300,"Lastname":"Doe"}'--pretty--table--columns "Col1,Col2,Nested.Field"rently info places
rently search availability --from "2026-04-01T10:00:00" --to "2026-04-05T10:00:00" --from-place 1
rently search price --from "2026-04-01T10:00:00" --to "2026-04-05T10:00:00" --from-place 1 --model-id 5
rently bookings create --json-body '{"Customer":{"Id":123},"Category":{"Id":1},"FromDate":"2026-04-01T10:00:00","ToDate":"2026-04-05T10:00:00","DeliveryPlace":{"Id":9},"ReturnPlace":{"Id":9},"Currency":"USD","IlimitedKm":true}'
rently bookings reserve --booking-id 456 --lastname Doerently operations deliver --booking-id 2300 --kilometers 15000 --gasoline 8 --make-delivery --run-validations
rently operations return --booking-id 2300 --kilometers 15500 --gasoline 6 --make-return --run-validations --date "2026-04-05T10:00:00"rently operations list-deliveries --branch-office-id 1
rently operations list-returns --branch-office-id 1--table--columns--json-body"2026-04-01T10:00:00"rently info placesrently info categories--offset--limitrently <command> <subcommand> --help