I have my DB, I maintain a status key in the response of my all API's, the purpose of that status key is to check the succession or failure of the API call.
When I hit the API, the request is sent to DB, and DB returns the response, which is a success, that you guys also provide in API Call action. But the request I sent to DB has some incorrect data, or data that is not present in DB, let say I asked for the data for some specific ID, but the ID does not exist in DB. Then DB returned the response which was a success but the response had an error, and I maintained the status key, as if
status is 20 = expires session
status is 2 = show error toast message, etc
so for this, I have to check the key status at all times, like if status === 1, then proceed, if status === 20, then expire the session, I want to know do you have any section for storing these status keys in Flutter flow so that I check that value at one point for all the APIs, is there any Substitution keys" section do you guys provide, this will help me in updating the keys, like from now I'll consider if status ===20 its a success and proceed further. Because if there is no section I have to update the key value in all the APIs I have used or called.