SnozeDevelopers
API referenceAssets

Begin a direct multipart upload session

Validates the declared name, MIME type, size, and per-part checksums, checks the workspace storage quota, opens a multipart upload against the object store, and returns the session with one presigned URL per part and an expiry. Requires a workspace member with the `files:write` permission. Refused when the storage backend does not support direct uploads, when the declared metadata or part layout is invalid, or when the workspace is over its storage quota. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.

POST
/v1/workspaces/{workspaceId}/assets/uploads
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/workspaces/string/assets/uploads" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "mimeType": "string",    "byteSize": 0,    "partSize": 0,    "parts": [      {        "partNumber": 0,        "checksumSha256": "string"      }    ]  }'
{  "data": {    "id": "string",    "expiresAt": "string",    "parts": [      {        "partNumber": 0,        "checksumSha256": "string",        "url": "string"      }    ]  }}