Reserve settlement advance credit
Holds credit so the maker can lock in a fee snapshot before requesting the settlement advance. Reservations expire after a short window (~15 minutes); after expiry the maker must reserve again.
Replaying the same idempotencyKey with the same advance returns
the existing reservation. Submitting a different idempotencyKey
while another reservation is still active replaces it (only one active
reservation per line).
Calling /reserve is optional; the maker may skip it and go straight
to requesting the settlement advance.
Authorizations
Circle's API Keys are formatted in the following structure "PREFIX:ID:SECRET". All three parts are requred to make a successful request.
Body
Request body for reserving settlement advance credit.
Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests. To create a UUIDv4 go to uuidgenerator.net. If the same key is reused, it will be treated as the same request and the original response will be returned.
"a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11"
Currency and amount for settlement advance flows.
Response
Reservation created or existing reservation returned on idempotent replay.
Settlement advance reservation.
System-generated unique identifier of the resource.
"c4d1da72-111e-4d52-bdbf-2e74a2d803d5"
Currency and amount for settlement advance flows.
Status of a settlement advance reservation.
funds_reserved, expired, replaced, consumed "funds_reserved"
Date and time when the resource expires
"2023-01-01T12:04:05Z"
Date and time when the resource was created
"2023-01-01T12:04:05Z"
Amount of currency, formatted as a string with up to six decimal places.
^\d+(?:\.\d{1,6})?$