Skip to main content
POST
/
strategies
/
{strategyId}
/
factsheet
Request (re)generation of the factsheet for the resolved run
curl --request POST \
  --url https://api.noonum.ai/v2/strategies/{strategyId}/factsheet \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "as_of_date": "2023-12-25",
  "force": false,
  "version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "status": "generating"
}

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and then your JWT or API Key. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... or Bearer YOUR_API_KEY_HERE

Path Parameters

strategyId
string<uuid>
required

UUID of the strategy

Body

application/json

Parameters for requesting factsheet generation.

as_of_date
string<date>

The as-of date (YYYY-MM-DD) selecting the run. Omitted -> the latest completed run for the version.

force
boolean
default:false

Regenerate even if a factsheet already exists for the run.

version_id
string<uuid>

Explicit version. Omitted -> the strategy's active version.

Response

Factsheet generation requested

status
string
required
Example:

"generating"