Simulation Run Plan
List run plans
Returns a paginated list of simulation run plans. Optionally filter by search text or agent ID.
get/v1/simulation/plan
Query parameters
limitinteger
Maximum number of run plans to return (default: 20, max: 50)
Example:20
afterstring
Cursor for pagination - use the nextCursor value from a previous response
searchTextstring
Search text to filter run plans by name
agentIdstring uuid
Filter run plans by agent ID
Response
Paginated list of run plans
Example response
{
"data": [
{
"scenarios": [
{
"variables": {
"customerName": "John Doe",
"appointmentDate": "2024-02-15"
}
}
]
}
]
}