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

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

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