Replies: 1 comment 3 replies
-
Would /diagnostics need to be called each time after modifying the roster? Petition to have (rosterDelta, rosterWarnings) or similar be the return of any API call modifying the roster (or maybe that is the idea and it isn't captured here yet). |
Beta Was this translation helpful? Give feedback.
-
A virtual REST API a Data Engine would provide:
GET /rosters/{rosterId}
- returns Roster ModelGET /simulations/{rosterId}/{rosterNodeId}
- returns an Option Simulation for a given roster nodePOST /rosters/{rosterId}/add
- input: node from OptionSimulation.POST /rosters/{rosterId}/duplicate
- input: node from Roster Model, potentially with the count of how many duplicates to create.DELETE /rosters/{rosterId}/nodes/{rosterNodeId}
- input: node from Roster Model.PUT /rosters/{rosterId}/nodes/{rosterNodeId}/count
- input: new node count.GET /rosters/{rosterId}/diagnostics
- returns a list of warnings, errors and messages etc.Beta Was this translation helpful? Give feedback.
All reactions