Workspace
Working with Projects
Endpoint: project(s)
With the workspace/projects
endpoint, the user can get a list of all available projects in the workspace or create a new project to be stored in the workspace.
Adding a scenario to an existing project can be achieved with the workspace/scenarios
endpoint.
The schema for the json response (all_projects
) is described in the schema file.
The workspace/projects
endpoint supports an optional search by project name using a query parameter ?name=<pattern>
.
The <pattern>
is interpreted as a (partial) case-insensitive regular expression.
If you omit the name parameter, the endpoint returns all existing projects.
HTTP Examples | |
---|---|
The workspace/project/{project_id}
endpoint is intended for getting project properties (e.g. name
or scenarios
), modifying properties and deleting an existing project from the workspace.
The project id can be obtained from the list of all projects provided by the workspace/projects
endpoint.
Working with Scenarios
Similar to the projects, the workspace endpoints allow to work with available scenarios. They can be retrieved, modified and deleted.
Note
New scenarios are not created with the workspace endpoints. The creation of a scenario can be done with the builder endpoints instead.
Endpoint: scenario(s)
The workspace/scenarios
endpoint provides a list of all available scenarios with their properties.
sequenceDiagram
participant C as Client
participant S as SESAM API
Note over C,S: Retrieve scenarios from the workspace
C->>+S: GET workspace/scenarios
S->>-C: list of all scenarios
Example Code | |
---|---|
Refining your interaction with a specific scenario is made possible through the workspace/scenario/{scenario_id}
endpoint.
By supplying the scenario ID as a URL parameter, you gain access to a spectrum of actions including retrieving properties, updating them, and deleting the scenario altogether.
sequenceDiagram
participant C as Client
participant S as SESAM API
Note over C,S: Retrieve scenario with id = 37 from the workspace
C->>+S: GET workspace/scenarios/37
S->>-C: properties of scenario 37
C->>+S: PATCH workspace/scenarios/37 { ... }
S->>-C: updated properties of scenario 37
C->>+S: DELETE workspace/scenarios/37
S->>-C: OK
The workspace/scenarios
endpoint supports an optional search by scenario name using a query parameter name
(string, optional).
The value is interpreted as a (partial) case-insensitive regular expression.
If you omit the name parameter, the endpoint returns all existing scenarios.
Usage of the Parameter 'name' | |
---|---|
The endpoints workspace/scenarios
and workspace/scenario/{scenario_id}
also support the following query parameter include_simulations
(boolean, optional).
When set to true
, the response will include full details of simulations associated with the scenario, including any simulation runs.
When omitted or set to false
, the response will only include the IDs of the simulations associated with the scenario.
Usage of the Parameter 'include_simulations' | |
---|---|
Endpoint: builtin-scenario(s)
In addition to the scenarios built by a user, SESAM also ships with built-in scenarios, which were contributed by external parties.
These scenarios are also visible in the workspace of registered users, but they can be neither modified nor deleted or downloaded.
The workspace/builtin-scenarios
endpoint provides a list of all available built-in scenarios (similar to the workspace/scenarios
endpoint).
Example Code | |
---|---|
The workspace/builtin-scenario/{scenario_id}
endpoint is similar to the workspace/scenarios/{scenario_id}
endpoint, as it takes a scenario id as a parameter in the url and provides a list of all properties of the builtin scenario as a result.
Example Code | |
---|---|
The workspace/builtin-scenarios
endpoint now also supports an optional search by scenario name using a query parameter ?name=<pattern>
(see above).
Endpoint: duplicate-scenario
You may need to duplicate a scenario to modify and simulate it, enabling you to observe variations in the simulation results.
This duplication functionality is facilitated through the workspace/duplicate-scenario/{scenario_id}
endpoint.
It takes a scenario id as a parameter in the url and allows to provide a name for the new scenario as part of the POST request body.
The duplication is only allowed for scenarios owned by the current user.
Endpoint: scenario-zip
The workspace/scenario-zip/{scenario_id}
endpoints allows to download a scenario from the workspace as a ZIP archive.
Calling this endpoint with the scenario id as an url parameter triggers a background task, which is responsible for creating the archive and providing the download link.
Note
The scenario download as a ZIP archive is only supported for user generated scenarios. Built-in scenarios cannot be downloaded as a ZIP archive.
The execution of the background task may take some time and depends on the size of the scenario to be prepared for download.
Clients can request the status of this task with the workspace/scenario-zip-status
endpoint.
After the background task finished its execution, it will signal its success with a state: "SUCCESS"
in the response.
It will also provide the download url in the download_url
field in the response.
sequenceDiagram
participant C as Client
participant S as SESAM API
Note over C,S: Download scenario with id = 13 as a ZIP archive
C->>+S: GET workspace/scenario-zip/13
S->>-C: status_url for task status
loop until state == "SUCCESS"
C->>+S: GET status_url
S->>-C: { ... state, download_url, ...}
end
Here is an example python code for creating a zip archive of an existing scenario with the id
13.
Endpoint: upload-scenario
The workspace/upload-scenario
endpoint allows users to upload a new scenario as a ZIP archive into the workspace.
This enables the import of pre-created scenarios into the system, making them available for further editing or simulation.
The upload is performed using a multipart/form-data request, where the ZIP archive and scenario metadata are sent together. After the upload, a background task is started to process the uploaded data.
Once the request is successfully submitted, the API returns a status_url
, which allows clients to track the progress of the upload.
When the processing is complete, the scenario is available in the workspace for further use.
Constraints for ZIP Archives:
- The ZIP archive must not contain subfolders. All files should be stored in the root directory of the ZIP file.
- The uploaded scenario can only contain SUMO-related scenario files with the following allowed extensions:
.bat, .diff, .duarcfg, .gz, .md, .netccfg, .polycfg, .rtcfg, .sh, .sumocfg, .txt, .xml
Any ZIP archive containing unsupported files or subdirectories will be rejected by the API.
sequenceDiagram
participant C as Client
participant S as SESAM API
Note over C,S: Upload scenario as ZIP archive
C->>+S: POST workspace/upload-scenario (multipart)
S->>-C: status_url for task status
loop until state == "SUCCESS"
C->>+S: GET status_url
S->>-C: { ... state, scenario_id, ...}
end
Here is an example python code for uploading a zip archive of a scenario to SESAM.
Make sure to set the Content-Type
of the request to multipart/form-data
and not to application/json
.
If you want to use an API tool, such as RapidAPI, please confer to the following image to see how the request can be configured.
Please note, how multiple values for allowed_time_step_lengths
are supplied as multiple parts in the request (see allowed_time_step_length[0]
and allowed_time_step_length[1]
in the screenshot) to be properly recognized by the API.
The file content can be added by creating the zipfile
part in the request, followed by a right click in the value field and then selecting File
and File Content
.
This allows to browse the local computer for the ZIP archive with the scenario to be uploaded.
Working with Simulations
Similar to the projects and scenario, there are also endpoints to retrieve, modify and delete simulations.
Note
New simulations are not created with the workspace endpoints. The creation of a simulation can be done with the simulator endpoints instead.
Endpoint: simulations
The workspace/simulations
endpoints provides a list of all available simulations with their properties.
sequenceDiagram
participant C as Client
participant S as SESAM API
Note over C,S: Retrieve simulations from the workspace
C->>+S: GET workspace/simulations
S->>-C: list of all simulations
Example Code | |
---|---|
A more fined grained interaction with a single, existing simulation can be achieved with the workspace/simulations/{simulation_id}
endpoint.
It requires the simulation id as an url parameter and offers to retrieve the properties, update its properties and delete the simulation.
sequenceDiagram
participant C as Client
participant S as SESAM API
Note over C,S: Retrieve simulation with id = 37 from the workspace
C->>+S: GET workspace/simulations/37
S->>-C: properties of simulation 37
C->>+S: PATCH workspace/simulations/37 { ... }
S->>-C: updated properties of simulation 37
C->>+S: DELETE workspace/simulations/37
S->>-C: OK
The workspace/simulations
endpoint supports an optional search by simulation name using a query parameter ?name=<pattern>
.
The <pattern>
is interpreted as a (partial) case-insensitive regular expression.
If you omit the name parameter, the endpoint returns all existing simulations.
HTTP Examples | |
---|---|
Endpoint: simulation-run-zip
Similar to the download of a scenario as a ZIP archive via the workspace/scenario-zip
endpoint, raw outputs and other results from a single simulation run can also be retrieved as a ZIP archive from the workspace.
This can be achieved by the workspace/simulation-run-zip/{simulation_run_id}
endpoint.
It works in a similar fashion as the workspace/scenario-zip
endpoint, as it triggers a background task to collect the output files and build the archive.
The workspace/simulation-run-zip-status
endpoint can be used in inquire about the execution status of the background task and retrieve the download uri after its successful completion.
sequenceDiagram
participant C as Client
participant S as SESAM API
Note over C,S: Download outputs of simulation with id = 13
C->>+S: GET workspace/simulation-run-zip/13
S->>-C: status_url for task status
loop until state == "SUCCESS"
C->>+S: GET status_url
S->>-C: { ... state, download_url, ...}
end
Here is an example python code for creating a zip archive of the outputs of a simulation with the id
13.