Skip to main content
POST
/
v1
/
manifest
/
validate
Validate Manifest
curl --request POST \
  --url https://api.mixpeek.com/v1/manifest/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form manifest_file='@example-file'
{
  "valid": true,
  "resources": {},
  "missing_secrets": [
    "<string>"
  ],
  "errors": [
    "<string>"
  ],
  "warnings": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

multipart/form-data
manifest_file
file
required

YAML manifest file

Response

Successful Response

Result of validating a manifest.

valid
boolean
required

Whether the manifest is valid

resources
Resources · object

Count of each resource type

missing_secrets
string[]

Secret names referenced but not configured

errors
string[]

Validation errors

warnings
string[]

Validation warnings