API Usage
Blueprints defined within Rhizome will expose a JSON / REST API that is accessible using a JWT token.
API tokens can be managed in your account settings. Any request that includes
the standard Authorization header with a working token will be considered
valid, e.g.
Authorization: Bearer YOUR-AUTH-TOKEN-HERE"
API Browser
By default any Step created in Rhizome's UI will have a built in API browser tool, which is useful for constructing API calls for integration with existing applications. To access the API browser, first create a step, then access the dropdown menu next to the step's title.
This will expose the typical create, read, update, and delete actions made available to all Rhizome Steps. Additional actions can be supported using Commands.
Using the UI, it's possible to fill out an example Step so that it meets all validations/expectations, before copying the code to generate that Step into your application.
The default format is CURL, but there's enough context there that you can translate it with an LLM if desired with a prompt, e.g. "Translate this CURL command into a call using Axios for Node.js" (just be careful not to share your real token).