Skip to main content
June 9, 2026
FeaturesImprovements

Filter rentals by receivedAt date range

GET /rentals now accepts a receivedAt filter (with gte, gt, lte, lt operators) for the actual receival timestamp, alongside the existing receiveAt, rentalStart, created, and updated filters.Query rentals received within a specific window, useful for keeping an external system in sync on when items actually came back, not just when they were due.
GET /api/v1/rentals?receivedAt[gte]=2026-06-01T00:00:00Z&receivedAt[lt]=2026-06-09T00:00:00Z

Recredit a membership credit via the API

PUT /membership_credits/{id} recredits or reclaims a customer’s membership credit when you receive a rental back. This is the same action available in the admin.The v1 Rental response now includes a membershipCredit object (id, credit cost, status, return condition), so you can find the credit and its status without a second call.
  • create_charge accepts an optional payment_collector_status (defaults to active), so you can create a charge whose collection starts in a non-active state.
  • Remove a line item from a subscription contract via the Admin GraphQL draft flow.
February 16, 2026
Deprecation

Rental intent tokens are being retired

We’re retiring rental intent tokens.If your integration creates or reads rental intent tokens, plan to migrate off them. To migrate early, or to delay the migration, contact support.
May 1, 2025
Improvements

Item location on the Admin API

GET, PUT, and update an item’s location via the Admin API.Keep an external WMS or OMS in sync with where each unit physically lives, without anyone editing locations by hand in the admin.
March 21, 2025
Features

Create timeline events via the Admin API

Add comments to an Item, Rental, or ReturnOrder through the Admin API.Push context from your own systems (an inspection note, a 3PL update) straight onto the record’s timeline, so the full history lives in one place.
February 19, 2025
Features

Storefront API is now in beta

The Storefront API is available in beta on request.Build a fully custom rental storefront with your own availability, cart, and checkout flows. Request access from support.