Export current resources to a YAML manifest.
Exports all resources (or a specific namespace) to a YAML file that can be version-controlled and re-applied to another environment.
Features:
${{ secrets.NAME }})Note: You must configure actual secrets before applying the exported manifest to a new environment.
Example:
# Export all resources
curl /v1/manifest/export \
-H "Authorization: Bearer $API_KEY" \
-o mixpeek.yaml
# Export specific namespace
curl "/v1/manifest/export?namespace_id=ns_abc123" \
-H "Authorization: Bearer $API_KEY" \
-o namespace.yaml
REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.
"Bearer YOUR_API_KEY"
"Bearer YOUR_STRIPE_API_KEY"
Export specific namespace (None = all)
Output format (yaml)
Name for the manifest
Successful Response