{{status_code}} equals 200).Step 1: Create User
(Extract $.id to {{userId}})
(Extract status code to {{createStatus}})
Step 2: Condition (If {{createStatus}} == 201)
|--> Step 3: Delete User (uses {{userId}})See details: Flow Control Conditions
10.See details: For Loops
Step 1: For Loop (Count: 50)
|--> Step 2: POST /users (Create User)Pro Tip: Use dynamic data like {{$randomUserName}}in thePOST /usersbody so you don't create 50 identical users.
GET /pets).{{petList}}.petList (without curly braces).petItem (this represents the current item in the loop).{{petItem.id}}, {{petItem.name}}, etc.See details: ForEach Loops
Step 1: GET /pets/findByStatus?status=available
(Extract $.data to {{petList}})
Step 2: ForEach Loop (List: {{petList}} -> Item: {{pet}})
|--> Step 3: GET /pets/{{pet.id}}
|--> Step 4: Condition (If {{pet.photoUrls}} is empty)
|--> Step 5: Custom Script (Log warning)GET /users/{id} endpoint.GET /users (Get list)$.data -> {{userList}}{{userList}}){{petItem.status}} Equals active:GET /users/{{petItem.id}}POST /users/{{petItem.id}}/reactivateGET /users/{{petItem.id}}