Skip to main content
POST
/
uploads
/
multipart
/
presign-parts
Get presigned URLs for upload parts
curl --request POST \
  --url https://core.cyberun.cloud/api/v1/uploads/multipart/presign-parts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "storage_key": "<string>",
  "upload_id": "<string>",
  "part_numbers": [
    1,
    2,
    3,
    4,
    5
  ]
}
'
{
  "part_urls": [
    {
      "part_number": 123,
      "upload_url": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT (Bearer ). Must be paired with the X-Team-ID request header on team-scoped endpoints so the server knows which team's resources to operate on.

Body

application/json

Request presigned upload URLs for specific parts.

storage_key
string
required

S3 object key for the upload.

upload_id
string
required

S3 multipart upload identifier from initiate.

part_numbers
integer[]
required

Part numbers to generate presigned URLs for (1-based).

Required array length: 1 - 100 elements
Required range: 1 <= x <= 10000
Example:
[1, 2, 3, 4, 5]

Response

Presigned part URLs generated

part_urls
object[]
required