Skip to main content
POST
/
api
/
factors
/
compute
cURL
curl --request POST \
  --url https://api.production.hyperoru.com/api/factors/compute \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "status": "<string>",
  "task_id": "<string>"
}

Authorizations

Authorization
string
header
required

Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.

Body

application/json

Generic free-form JSON object used as a fallback response schema for endpoints whose payload is large, deeply nested, or best documented via their narrative description rather than a fixed Rust type.

Named so it shows up as a proper $ref in the generated spec instead of a bare serde_json::Value; clients that want stricter typing should reach for the domain-specific DTOs declared alongside the relevant handler.

Response

Factor compute job queued

{ "task_id": "...", "status": "queued" } response from async-start endpoints.

status
string
required
Example:

"queued"

task_id
string
required