Conditional SWITCH Example
Apply SWITCH condition to look for a certain string value.
SWITCH: HTTP Request body condition
.
- Case 1 If the SWITCH contains
foo1
. - Default: reply with a message "No matching condition".
Supporting Concepts
Basic concepts needed for the use case
Topic | Description |
---|---|
API | An API in API AutoFlow is simply an OpenAPI model |
Server | A server accepts and handles the request and response. |
Simulation | Data simulation is a mock data simulated for the purpose of visualizing the data in every step of the workflow.
|
Scope | A scope is a namespace for variables. |
Data Types | Data types describe the different types or kinds of data that you are gonna store and work with. |
Use case specific concepts
Topic | Description |
---|---|
Action conditional/SWITCH | Returns values that fits the condition. |
Action string/upcase | Returns a string where converts all characters in the given string to uppercase. |
Details
Send JSON object with keys condition
and value
over HTTP request body.
The goal of the operation is to run a conditional SWITCH logic:
IF the condition contains
foo1
.
{ "condition": "foo1", "value": "bar1" }
Capitalize the value.
{ "condition": "FOO1", "value": "BAR1" }
Content
INPUT: HTTP Request
1: Create an API endpoint
Learn how to create an API.
Create an API
From the left navigation, go to the API section and create a new API.
- ID:
sample-conditional
Create an API Path
- Path:
/switch
- Method: POST
2. Create a Server Operation
Learn how to create a Server.
Create a Server
From the left navigation, go to the Server section and create a new Server.
- Server ID:
sample-conditional
- Port Number:
1113
Feel free to select your own port number - Linked API:
sample-conditional
(select the API you created above)
Create a Server Operation
- Press the "Add API Operation"
- Select the API endpoint created above
3 : Create Data Simulation using Real Data
Learn how to create a Simulation.
We will use the "real data" to create the test simulation.
1. Send a HTTP request from Postman or cURL
API Autoflow Postman Collections
cURL
curl --location 'localhost:1113/switch' \
--header 'Content-Type: application/json' \
--data '{
"condition": "foo1",
"value": "bar1"
}'
2. Check the data is received by the server endpoint
API Autoflow captures the data received and it can be used to create data simulation.
Action(s)
Learn how to create a Actions.
Add actions to transform the data.
1. Apply switch condition to the input data
Learn how to create a conditional/SWITCH.
SWITCH condition works based on matching the values between the SWITCH and CASE.
SETTINGS
SWITCH: data
[request:
body > condition
]
(Case 1): IF the SWITCH condition contain foo1
OUTPUT: HTTP Response
1. Create a NEW object and map the IP and Subnet
Both the action's output and HTTP response body are set to variables: output
. There's no change that needs to be made.
HTTP Response
SETTINGS
body: data
[variables:
output
]
- Data referenced in HTTP response is what gets sent back to the client.
- Map the output from the actions to be sent back.
NOTE: By default, the action output is set to variable output. If you intend to keep each action's output without it being overwritten by the next action, simply rename the output location in the action's output.
2. Test the API with Postman or CURL
cURL
curl --location 'localhost:1113/switch' \
--header 'Content-Type: application/json' \
--data '{
"condition": "foo1",
"value": "bar1"
}'