v1

latestOpenAPI 3.0.0Apache 2.02026-07-17224.6 KB
developers

searches inventory

By passing in the appropriate options, you can search for available inventory in the system

get/products

Query parameters

searchStringstring

pass an optional search string for looking up inventory

skipinteger

number of records to skip for pagination

limitinteger

maximum number of records to return

Response

search results matching criteria

idstring uuid required
namestring required
releaseDatestring date-time required

Example response

[
  {
    "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "name": "Widget Adapter",
    "releaseDate": "2016-08-29T09:12:33.001Z",
    "manufacturer": {
      "name": "ACME Corporation",
      "homePage": "https://www.acme-corp.com",
      "phone": "408-867-5309"
    }
  }
]
All 2 operations