You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Datastore is a persistent storage mechanism you can use for workflows to talk to each other between executions, or for normal storage. Below are the endpoints related to datastore (cache) creation, listing, deletion and more. This API is available to Python apps by using self.set_cache("key", "value") and self.get_cache("key")
248
+
249
+
### Add a key
250
+
To add a key to a specific category, add `"category": "name"` to the JSON body.
Apps are the building blocks used in [workflows](/docs/apps#workflows), as they contain the actions to be executed. First of all, there are two types of apps:
248
340
@@ -589,83 +681,6 @@ curl https://shuffler.io/api/v1/users/generateapikey -H "Authorization: Bearer A
589
681
{"success": true, "username": "username", "verified": false, "apikey": "new apikey"}
590
682
```
591
683
592
-
## Datastore API
593
-
Datastore is a persistent storage mechanism you can use for workflows to talk to each other between executions, or for normal storage. Below are the endpoints related to datastore (cache) creation, listing, deletion and more. This API is available to Python apps by using self.set_cache("key", "value") and self.get_cache("key")
594
-
595
-
### Add a key
596
-
To add or edit a cache key use
597
-
598
-
To add a key to a specific category, add `"category": "name"` to the JSON body.
Below are the endpoints related to file creation, uploading, downloading, listing and more. This API is available to Python apps by using self.set_files(files) and self.get_file(file_id)
671
686
@@ -1154,4 +1169,4 @@ As you can see, I triggered this Singul execution through the Singul app (not th
0 commit comments