aiidateam / aiida-restapi

AiiDA Web API for data queries and workflow management.
https://aiida-restapi.readthedocs.io
MIT License
10 stars 7 forks source link

Add `PUT` method to processes #62

Open superstar54 opened 1 year ago

superstar54 commented 1 year ago

Currently, no PUT method is available to the processes endpoint.

User story

In AiiDAlab, we want to update the extra parameters of a ProcessNode. This can be done using AiiDA directly.

process.base.extras.set("builder_parameters", parameters)

For REST API, the PUT method is needed to do this.