Search engine
This functionality allows you to search for responses in JSON format, based on URI parameters.
How to work with it
{
"errors": null,
"responseData": [
{
"id": "1",
"email": "[email protected]",
"createdAt": "822285684",
"content": "sometext"
},
{
"id": "2",
"email": "[email protected]",
"createdAt": "683679219",
"content": "sometext"
},
...
]
}Search logic

URI param for searching
Path
Result format
Testing
Case 1 - I don't pass the parameter because it's optional
Case 2 - I pass a parameter whose value is in one of the objects
Case 3 - I pass a parameter whose value is not in the objects
Last updated