Demo
Start a sample asynchronous job without authentication
Public, no-auth demo of the asynchronous-job pattern. Starts a synthetic job and returns 202 Accepted with a Location header (and data.status_url) pointing at the job-status resource. Poll GET /demo/jobs/{id} until the status is terminal. No real work runs; the status is a fixed sample.
post/demo/jobs
Headers
Idempotency-Keystring
Optional client-supplied idempotency key. Retrying a request with the same key returns the original result instead of performing the action a second time; if omitted the server derives one from the canonical payload hash. Safe to retry network failures without duplicating side effects.
Response
Job accepted. Poll the returned status URL for progress.