Simulation Run Plan
Update a run plan
Updates an existing simulation run plan by its ID.
put/v1/simulation/plan/{planId}
Path parameters
planIdstring uuid required
The ID of the run plan to update
Request body
Example request
{
"flows": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"happyPath": true,
"edgeCases": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"variables": {
"tier": "premium"
}
}
]
}
]
}Response
The updated run plan
Example response
{
"data": {
"scenarios": [
{
"variables": {
"customerName": "John Doe",
"appointmentDate": "2024-02-15"
}
}
],
"flows": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"happyPath": true,
"edgeCases": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"variables": {
"tier": "premium"
}
}
]
}
]
}
}