Collections
The ETM's Collections feature can be used by providing scenario IDs directly to the URL. However, in order for them to appear in your list, you can use the API to create persisted collections.
Instead of a collection, the viewer can also show a comparison of a selection of saved scenarios. With this endpoint you may also create such a persisted collection.
The ETM provides an API for creating, updating, and removing collections from your account.
The Collection object
All collections contain the following attributes, which will be part of any response from the collection endpoint:
id- the numeric id of the collection.title- the title of the collection, shown in the list.version- the version associated with the collection. See model versions for more information.scenario_ids- the list of scenarios in the collection.saved_scenario_ids- the list of saved scenarios in the collection.collections_app_url- url to access the collection in the collections app.created_at- date of creation.updated_at- date of last update.discarded_at- date it was discarded.discarded- specifies weather the collection has been discarded.interpolation- specifies whether the collection is a transition path.interpolation_params- information if the collection is a transition path:area_code- the identifier for the area.end_years- years of the transition path steps.
owner- information about the owner of the collection:id- the owner's unique ID number.name- the owner's name.
Getting information about a collection
Fetch information about a collection.
- Endpoint
- GET /api/v3/collections/{id}
- Path parameters
idnumberthe ID of the collection path
- Token
This endpoint requires an authentication token with at least the following scopes:
scenarios:readRead your public and private scenarios
GET /api/v3/collections/123 HTTP/2
Host: engine.energytransitionmodel.com
Accept: application/json
Authorization: Bearer YOUR_TOKEN
{
"id": 123,
"title": "My collection",
"version": "latest",
"scenario_ids": [12, 34],
"saved_scenario_ids": [5],
"collections_app_url": "https://collections.energytransitionmodel.com/12,34,56?locale=en\u0026title=My%20collection",
"created_at": "2022-07-27T13:45:32.000Z",
"updated_at": "2022-12-22T19:21:32.000Z",
"discarded_at": null,
"discarded": false,
"interpolation": true,
"interpolation_params": {
"area_code": "nl2023",
"end_years": [2030, 2040, 2050]
},
"owner": {
"id": 1,
"name": "John Doe"
}
}
Listing your collections
You can get a list of all collections which belong to you. The list is paginated.
- Endpoint
- GET /api/v3/collections
- Token
This endpoint requires an authentication token with at least the following scopes:
scenarios:readRead your public and private scenarios
GET /api/v3/collections HTTP/2
Host: engine.energytransitionmodel.com
Accept: application/json
Authorization: Bearer YOUR_TOKEN
{
"collections": [
{
"id": 12,
"title": "My collection",
"version": "latest",
"scenario_ids": [],
"saved_scenario_ids": [1, 2, 3],
"created_at": "2022-07-27T13:45:32.000Z",
"updated_at": "2022-12-22T19:21:32.000Z",
"discarded_at": null,
"discarded": false,
"interpolation": false,
"owner": {
"id": 1,
"name": "John Doe"
}
},
// ...
]
}
Create a collection
Creating a collection will cause it to appear in your list and in the web application.
- Endpoint
- POST /api/v3/collections
- Parameters
titlestringRequiredwhat to call the collectionscenario_ids[]numberthe IDs of the underlying scenarios (Requirement based oninterpolation)saved_scenario_ids[]numberthe IDs of the underlying saved scenarios (Requirement based oninterpolation)interpolationbooleantrue for a transition path; in which case the following are required:
- Exactly one
saved_scenario_ids - At least one
scenario_ids
false for an ordinary collection; in which case the following is required:
- At least one
scenario_idsorsaved_scenario_ids
- Exactly one
- Token
This endpoint requires an authentication token with at least the following scopes:
scenarios:readRead your public and private scenarios
scenarios:writeCreate and update your public and private scenarios
Before you can create a collection, you must create the underlying scenarios or saved scenarios. The response will include the ID number of your new scenario. You may then create a collection as a second step, passing the scenario IDs:
POST /api/v3/collections HTTP/2
Host: engine.energytransitionmodel.com
Accept: application/json
Authorization: Bearer YOUR_TOKEN
{
"title": "My collection",
"scenario_ids": [12, 34],
"saved_scenario_ids": [5, 6]
}
{
"id": 123,
"title": "My collection",
"version": "latest",
"scenario_ids": [12, 34],
"saved_scenario_ids": [5, 6],
"collections_app_url": "https://collections.energytransitionmodel.com/12,34,56?locale=en\u0026title=My%20collection",
"created_at": "2022-07-27T13:45:32.000Z",
"updated_at": "2022-12-22T19:21:32.000Z",
"discarded_at": null,
"discarded": false,
"interpolation": false,
"owner": {
"id": 1,
"name": "John Doe"
}
}
Update a collection
Update a collection by assigning new underlying scenarios and title.
- Endpoint
- PUT /api/v3/collections/{id}
- Path parameters
idnumberthe ID of the collection path
- Parameters
titlestringwhat to call the collectionscenario_ids[]numberthe IDs of the underlying scenariossaved_scenario_ids[]numberthe IDs of the underlying saved scenariosdiscardedbooleanwhether the collection should be in the owner's trash
- Token
This endpoint requires an authentication token with at least the following scopes:
scenarios:readRead your public and private scenarios
scenarios:writeCreate and update your public and private scenarios
PUT /api/v3/collections/123 HTTP/2
Host: engine.energytransitionmodel.com
Accept: application/json
Authorization: Bearer YOUR_TOKEN
{
"title": "A new title",
"scenario_ids": [45, 67],
"saved_scenario_ids": [89]
}
{
"id": 123,
"title": "A new title",
"version": "latest",
"scenario_ids": [45, 67],
"saved_scenario_ids": [89],
"created_at": "2022-12-23T19:21:32.000Z",
"updated_at": "2022-12-23T19:22:38.000Z",
"discarded_at": null,
"discarded": false,
"interpolation": false,
"owner": {
"id": 1,
"name": "John Doe"
}
}
Delete a collection
collections may also be permanently deleted.
Deleting a collection removes it from your list of paths in the web application. It does not delete the underlying scenarios. You may delete scenarios or saved scenarios owned by your account as a separate action; see Deleting your scenarios or Delete a saved scenario.
- Endpoint
- DELETE /api/v3/collections/{id}
- Path parameters
idnumberthe ID of the collection path
- Token
This endpoint requires an authentication token with at least the following scopes:
scenarios:readRead your public and private scenarios
scenarios:writeCreate and update your public and private scenarios
scenarios:deleteDelete your public and private scenarios
DELETE /api/v3/collections/123 HTTP/2
Host: engine.energytransitionmodel.com
Authorization: Bearer YOUR_TOKEN