In Signals Notebook update 26.5, the ability to move existing experiments to a different notebook was added to the API. In this article, you'll find a step-by-step guide on how to perform this action using our Swagger.
Access Swagger page in Signals Notebook.
Expand the “Entities” menu.
Search for the endpoint "PATCH/entities/{eid}/move".
Expand this endpoint and click on "Try it out".
In the eid field, paste the eid of the experiment you want to move.
For the request body of this endpoint, you can use the following example:
{
"data": {
"type": "moveEntityRequest",
"attributes": {
"target": {
"eid": "PLACE YOUR TARGET NOTEBOOK EID HERE"
}
}
}
}
Note: Remember to add your notebook's eid in the appropriate section.
Click on "Execute".
Once you have completed this process, you will have successfully moved your experiment to another notebook using Signals Notebook's Swagger.
Comments
0 comments
Article is closed for comments.