Reservations
Take released GPU units back into a reservation (platform admin)
Returns the named units to the reservation. Anything running on them is subject to termination by the node's owning org.
Authorization
apiKey AuthorizationBearer <token>
OpenRelay API key. Send it as Authorization: Bearer vl_….
In: header
Path Parameters
nodeId*string
id*string
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/nodes/string/reservations/string/reclaim" \ -H "Content-Type: application/json" \ -d '{ "unitIds": [ "string" ] }'{
"id": "string",
"nodeId": "string",
"reservedUnitIds": [
"string"
],
"allowedOrgIds": [
"string"
],
"startsAt": "string",
"endsAt": "string",
"status": "pending",
"topologyGen": 0,
"contractRef": "string",
"reason": "string",
"createdAt": "string",
"updatedAt": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string"
}Command line
The orl CLI wraps this endpoint:
orl reservations unit reclaim <node-id> <id> --unit-ids <unit-ids>Release GPU units back to the market for public sale (platform admin) POST
The double-sell operation: the named units leave the reservation and become ordinary public capacity, sold at the spot tier and terminable by the org that owns the node.
What GPU capacity is reserved to this org, and until when GET
Next Page