GET
/
collections
/
{collectionName}
/
docs
/
bulk-upsert
cURL
curl --request GET \
  --url https://{projectHost}/collections/{collectionName}/docs/bulk-upsert \
  --header 'x-api-key: <api-key>'
{
  "url": "<S3 presigned URL>",
  "type": "application/json",
  "httpMethod": "PUT",
  "objectKey": "example-object-key",
  "sizeLimitBytes": 209715200
}

Authorizations

x-api-key
string
header
required

Project API Key.

Path Parameters

collectionName
string
required

Collection name.

Response

Required info to upload documents.

url
string
required

Presigned URL.

type
enum<string>
default:application/json
required

Content type that must be specified when uploading documents.

Available options:
application/json
httpMethod
enum<string>
default:PUT
required

HTTP method that must be specified when uploading documents.

Available options:
PUT
objectKey
string
required

Object key that must be specified when uploading documents.

sizeLimitBytes
integer
default:209715200
required

Object size limit in bytes.