I have just started using the Bubble API Connector and have a couple of questions. The first one is how can I pass data between API’s? So in the example I have is I want to pass a token from the first API to the second that needs it:-
Best if you can use Bubble auth instead of manual. Bubble will include the token for you at this moment. This depend of the type of auth the API request you to use.
You cannot use the data from one API call in another directly within the API Connector. However, you can sequence them inside any Workflow and use the response from the first call in the second one.
1 - In a Workflow, create an action to make the first API call.
2 - In any step after the first call, create another action to make the second API call and use the Token returned from the first call as a dynamic value for the second. Make sure the Private checkbox is unchecked for this to work.
Another way to do this is by saving the Token in the database and then using it in a later step for the second API call. If you choose to save it in the database, it is very important to review your app’s security rules.
Thanks both. Ruiz I am using your suggested method already although as the token is valid for a week I may move this to the database in any case. Any comment on how I have the API configured? I configured it as an Action so I could use it in a workflow but I am not sure whether there are better ways. It feels a bit clunky.