POST to commit, GET to audit. Both
work in terms of intervals and integer GB; there are no individual blocks
or unit IDs.
Reservations compose at 15-minute granularity, so a multi-hour or
multi-day commitment is just a list of contiguous (or non-contiguous)
intervals. Reserve precisely the windows your workload occupies — there’s
no minimum block size beyond the interval itself, and no requirement to
reserve continuously through periods you won’t use.
Make a reservation
One call commits capacity to one or more 15-minute intervals. Atomic across the whole request — either every interval is reserved, or nothing is.curl
Validation
The server rejects malformed requests with400 Bad Request and a
plain text error message:
Capacity shortfall (409)
When the request is well-formed but doesn’t fit available capacity, the server returns409 capacity_not_available with a list of every
problematic interval, so the client can retry with adjusted numbers in
a single round-trip:
reason is one of:
Idempotency
Both reservation writes accept anIdempotency-Key header. The server
stores the key with a hash of the request body and the response. Retries
return the cached response, even if the original write succeeded.
Build keys from a deterministic name for the operation, e.g.
reserve-nightly-2026-04-29, so a client retry sends the same key.
Cancellation does not exist
Reservations are non-refundable. Once committed, capacity is permanent for that interval. There is noDELETE, no cancel endpoint, no transfer to a
different interval.
The hedge: book conservatively, only what you’re confident you’ll run, and
let on-demand absorb the variability above.
List your reservations
The audit list. Returns every reservation event you’ve made in the time window, in reverse-chronological order.curl
For end-of-month reconciliation, list reservations and group totals by
interval. The calendar gives you the current per-interval state; the list
gives you the history of how it got there.
Concurrency and atomicity
Parallel writes to the same interval from the same org serialize on the
server. Whichever request commits first claims the remaining capacity;
later requests see the updated
reservableGb in their validation error.
Where to go next
Usage and overage
How reserved capacity consumes actual usage.
Reading the calendar
Plan before you commit.
API reference
Every endpoint with full request/response shapes.