Skip to main content
POST
/
api
/
document-stores
/
{id}
/
multipart-upload-part-urls
Get presigned URLs for upload parts
curl --request POST \
  --url https://platform.kodexa.ai/api/document-stores/{id}/multipart-upload-part-urls \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '[
  123
]'
{
  "parts": [
    {
      "partNumber": 123,
      "url": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.kodexa.ai/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.

Path Parameters

id
string<uuid>
required

Unique identifier (UUID) of the resource.

Query Parameters

uploadId
string
required

Multipart upload identifier.

s3Key
string
required

S3 key of the multipart upload.

Body

application/json

Response

Part URLs

parts
object[]