Capacities
Create capacity transfer
⚠️ This endpoint is in public preview.
Transfer some or all of one capacity into another
post/preview/v2/capacity_transfers
Headers
Idempotency-Keystring nullable
Unique key for idempotent transfer creation.
Request body
Example request
{
"from_capacity": "cap_k3R-nX9vLm7Qp2Yw5Jd8F",
"to_capacity": "cap_k3R-nX9vLm7Qp2Yw5Jd8F",
"allocation_schedule_delta": [
{
"start_at": 1738972800,
"end_at": 1738972800
}
],
"instance_sku": "isku_k3R-nX9vLm7Qp2Yw5Jd8F"
}Response
Capacity transfer accepted.
Example response
{
"object": "capacity_transfer",
"id": "cxfr_k3R-nX9vLm7Qp2Yw5Jd8F",
"created_at": 1738972800,
"from_capacity": "cap_k3R-nX9vLm7Qp2Yw5Jd8F",
"to_capacity": "cap_k3R-nX9vLm7Qp2Yw5Jd8F",
"instance_sku": {
"id": "isku_k3R-nX9vLm7Qp2Yw5Jd8F",
"name": "my-resource-name"
},
"allocation_schedule_delta": [
{
"start_at": 1738972800,
"end_at": 1738972800
}
]
}