Posium LogoPOSIUM

Get S3 upload credentials

Generates presigned S3 POST credentials for file uploads

POST
/credentials
/credentials

The Authorization access token

Authorization

x-api-key<token>

In: header

Request Body

application/jsonRequired

runId
Required
string

The run ID to generate upload credentials for

curl -X POST "https://reporter.posium.ai/credentials" \
  -H "x-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "runId": "string"
  }'

Credentials successfully generated

{
  "url": "string",
  "fields": {}
}