cURL
curl --request POST \ --url https://api.usezombie.com/v1/workspaces/{workspace_id}:sync \ --header 'Authorization: Bearer <token>'
{ "synced_count": 123, "total_pending": 123, "specs": [ { "spec_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "file_path": "<string>", "title": "<string>", "status": "pending", "created_at": 123, "updated_at": 123 } ], "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
Reads PENDING_*.md spec files from the repository’s default branch and upserts them into the control plane. Returns the count of newly synced specs.
Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth
Workspace identifier
Sync complete
Number of specs synced in this request
Total pending specs after sync
List of synced spec summaries
Show child attributes