Skip to content
Quadrollopo edited this page Oct 16, 2020 · 1 revision

Searching an item

Compute the search

Request:

POST /v2/search

In the body you put all the parameters you need to search

Example:

{
  "location": "Rambox",
  "features": {
    "type": "case",
    "brand": "HP"
  }
}

You will get an id in response


Request:

PATCH /v2/search/{id}

Filter your previous search, where id is the id of the search

Example:

{
  "features": {
    "working": "yes"
  }
}

You will get an id in response

Getting a search

Request:

GET /search/{id}[/page/{page}]

Under costruction