Join the conversation

Join the community of Machine Learners and AI enthusiasts.

Sign Up
dhruv3006 
posted an update 2 days ago
Post
1365
Need a variable that's not fixed but depends on another request's response?

Runtime variables let you capture values from one API call and reuse them in subsequent requests.

What are Runtime Variables?
Runtime variables are dynamic values that get set during request execution.

They're perfect for scenarios like:
- Capturing an auth token from login and using it in authenticated requests
- Storing a user ID from a create-user response
- Saving an order ID to use in later order management calls

Use Runtime Variables in Voiden : https://voiden.md/

In this post