Skip to main content
PUT
/
environments
/
{org}
/
{env_name}
/
report
/
S3
Report S3 environment
curl --request PUT \
  --url https://app.kosli.com/api/v2/environments/{org}/{env_name}/report/S3 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "artifacts": [
    {
      "digests": {},
      "creationTimestamp": 123
    }
  ],
  "type": "S3"
}
'
{
  "message": "<string>",
  "errors": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

env_name
string
required
org
string
required

Body

application/json

S3 report containing artifacts

artifacts
S3Artifact · object[]
required

all artifacts in the report

type
string
default:S3

Environment type

Allowed value: "S3"

Response

Report processed successfully, no new snapshots to create

Last modified on April 9, 2026