solarOSsolarOS Docs

Request Aurora sync for a Quote

Requests external Aurora sync work for one Quote without mutating Quote content. Requires Idempotency-Key. The request may provide auroraDesignId and auroraProjectId directly, or the action resolves them from Aurora External References on the Quote. Side effects include ActivityLog, quote.aurora_sync_requested domain event, idempotency capture, and usage telemetry. Required scope: quotes:write.

POST
/quotes/{id}/aurora-sync

Requests external Aurora sync work for one Quote without mutating Quote content. Requires Idempotency-Key. The request may provide auroraDesignId and auroraProjectId directly, or the action resolves them from Aurora External References on the Quote. Side effects include ActivityLog, quote.aurora_sync_requested domain event, idempotency capture, and usage telemetry. Required scope: quotes:write.

Authorization

Authorization<token>

Organization API key. Format: Bearer sk_live_...

In: header

Path Parameters

id*string

Quote identifier returned by the Organization API.

Request Body

application/json

JSON request payload for requestQuoteAuroraSync.

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/quotes/string/aurora-sync" \  -H "Content-Type: application/json" \  -d '{    "auroraDesignId": "aurora_design_123",    "auroraProjectId": "aurora_project_456"  }'
{  "data": {    "action": {      "confirmed": true,      "confirmationSignal": "string"    },    "resource": {}  },  "meta": {    "requestId": "string",    "version": "v1",    "timestamp": "2019-08-24T14:15:22Z",    "rateLimit": {      "limit": 0,      "remaining": 0,      "reset": 0    }  }}