GetCategories

GET /categories

Returns a list of categories with different filters

Query parameters

  • type string Required

    Values are plant or insect.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • type string Required

      Values are plant or insect.

    • category string Required

      Minimum length is 2, maximum length is 20.

    • subcategory string

      Minimum length is 2, maximum length is 20.

  • 500

    Internal Server Error

GET /categories
curl \
 --request GET 'https://garden-to-yours.herokuapp.com/categories?type=plant' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "__v": 0,
    "_id": "60883d518a1c16666c8f08bf",
    "type": "plant",
    "category": "Cactus"
  },
  {
    "__v": 0,
    "_id": "60883d778a1c16666c8f08c0",
    "type": "plant",
    "category": "Otra Planta"
  },
  {
    "__v": 0,
    "_id": "60883dd68a1c16666c8f08c1",
    "type": "plant",
    "category": "Plantas de interior"
  },
  {
    "__v": 0,
    "_id": "60883de38a1c16666c8f08c2",
    "type": "plant",
    "category": "Plantas de exterior"
  },
  {
    "__v": 0,
    "_id": "60883ded8a1c16666c8f08c3",
    "type": "plant",
    "category": "Árboles y Arbustos"
  },
  {
    "__v": 0,
    "_id": "60883e168a1c16666c8f08c4",
    "type": "plant",
    "category": "Plantas de flor",
    "subcategory": "Semillas"
  },
  {
    "__v": 0,
    "_id": "60883e1a8a1c16666c8f08c5",
    "type": "plant",
    "category": "Plantas de flor",
    "subcategory": "Bulbos"
  },
  {
    "__v": 0,
    "_id": "60883e298a1c16666c8f08c6",
    "type": "plant",
    "category": "Plantas hortícolas",
    "subcategory": "Semillas"
  },
  {
    "__v": 0,
    "_id": "60883e308a1c16666c8f08c7",
    "type": "plant",
    "category": "Plantas hortícolas",
    "subcategory": "Plantulas"
  },
  {
    "__v": 0,
    "_id": "60883e3c8a1c16666c8f08c8",
    "type": "plant",
    "category": "Cactus y suculentas",
    "subcategory": "Cactus"
  },
  {
    "__v": 0,
    "_id": "60883e438a1c16666c8f08c9",
    "type": "plant",
    "category": "Cactus y suculentas",
    "subcategory": "Suculentas"
  }
]