Storing API request in database

I am hitting one API where there are two dynamic fields and i am storing each of these request parameters in variables. is it possible to capture the requests in Database

You can store API response using json/array/object in the database @vikram.ks

1 Like

i wanted to store API request aswell to the database

the ideal sequence here would be to

Make API call in bot flow → Store response in an object variable(depending on response type) → Writing a function to parse this response and return the required fields → Storing them in global variables in the bot flow → Inserting all these datapoints into a DB under a single record

1 Like