Onboarding Check - HTTP
Number of APIs: 3
🚀 Get started here
This collection handles the first onboarding check to monitor that the user is free from any fraud records in the past and keeps active monitoring record for future fraud watch
🔖 How to use this collection
Step 1: Send requests
The system engine supports both gRPC and HTTP protocol type communication, please reference gRPC test communication between individual micro services
Step 2: View responses
Observe the response tab for status code (200 OK), response time, and size and see data structure before implementing
Step 3: Send new Body data
Update or add new data in Body
in the POST request. Typically, Body data is also used in PUT and PATCH requests.
{
"name": "Add your name in the body"
}
Step 4: Update the variable
Variables enable you to store and reuse values in Qodex. We have created a variable called base_url
with the sample request https://Qodex-api-learner.glitch.me. Replace it with your API endpoint to customize this collection.
Step 5: Add tests in the Tests
tab
Tests help you confirm that your API is working as expected. You can write test scripts in JavaScript and view the output in the Test Results
tab.
💪 Pro tips
- Test collection before implementing
- See flow on how the systems mocks and handle checklist
ℹ️ Resources
-
Post data POST {{base_url}}/info
-
Update data PUT {{base_url}}/info?id=1
-
Delete data DELETE {{base_url}}/info?id=1