POST
/
api
/
v1
/
admin
/
simulation
/
scenario-blueprints
/
v2
/
preview
Preview Scenario Blueprint V2
curl --request POST \
  --url https://api.jobsim.work/api/v1/admin/simulation/scenario-blueprints/v2/preview \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organization_id": "<string>",
  "scenario_type": "hr_workforce",
  "scenario_name": "<string>",
  "channel_preset_key": "<string>",
  "task_preset_key": "<string>",
  "org_culture": "<string>",
  "pressure_model": "<string>",
  "team_topology": "<string>",
  "meeting_model": "<string>",
  "evaluation_model": "<string>",
  "relationship_model": "<string>",
  "consequence_model": "<string>",
  "knowledge_model": "<string>",
  "team_size": 123,
  "include_template_payload": false,
  "include_readiness": false,
  "metadata": {}
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request payload to preview v2 blueprint validation and drift without applying.

organization_id
string | null
scenario_type
string
default:hr_workforce
scenario_name
string | null
channel_preset_key
string | null
task_preset_key
string | null
org_culture
string | null
pressure_model
string | null
team_topology
string | null
meeting_model
string | null
evaluation_model
string | null
relationship_model
string | null
consequence_model
string | null
knowledge_model
string | null
team_size
integer | null
include_template_payload
boolean
default:false
include_readiness
boolean
default:false
metadata
Metadata · object

Response

Successful Response