POST /v1/manage and require both of the following:
projectIdfield in the JSON body.x-project-keyheader containing the project access key.x-service-versionheader set tov1.
403 Forbidden with a JSON error payload.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to authenticate requests to the Moss Control Plane API.
POST /v1/manage and require both of the following:
projectId field in the JSON body.x-project-key header containing the project access key.x-service-version header set to v1.403 Forbidden with a JSON error payload.
curl -X POST "https://service.usemoss.dev/v1/manage" \
-H "Content-Type: application/json" \
-H "x-service-version: v1" \
-H "x-project-key: moss_access_key_xxxxx" \
-d '{
"action": "listIndexes",
"projectId": "project_123"
}'