Plant Tracker API project

Posted March 5, 2025

Table of Contents

View on Github ▸

The Plant Tracker API will allow users to manage and track their plants through different growth stages. Built with Node.js, Express.js, and MongoDB, the API will store plant data such as growth stages, start dates, and projected harvest dates. Users will be able to update plant stages, archive or delete plants, and retrieve plant information via a RESTful API. The application will be containerized with Docker for easy deployment and scalability.

Planned future enhancements include a CLI client, a web GUI (Vue.js + Tailwind CSS), and incorporating notifications for plant care reminders among others.

Mockup of plant dashboard showing plants in different states

Mockup of plant dashboard showing plants in different states

Mockup of plant dashboard showing plant details

Mockup of plant dashboard showing plant details

Tech Stack

Features


Plant Schema

Property: Type: Notes:
name string Required
plantAbbr string Auto-generated
status active|archived|inactive See below
source seed|clone
stage seedling|veg|flower|harvested|cure
notes string
startedOn date (YYYY-MM-DD)
vegStartedOn date (YYYY-MM-DD)
flowerStartedOn date (YYYY-MM-DD)
potentialHarvest date (YYYY-MM-DD) Read-only
harvestedOn date (YYYY-MM-DD)
cureStartedOn date (YYYY-MM-DD)

Create a new plant

POST /api/v1/plants

Valid POST request parameters

Field: Type: Notes:
name string Required
source seed|clone Defaults to seed
stage seedling|veg|flower|harvested|cure Defaults to seedling
notes string
startedOn date (YYYY-MM-DD) Defaults to today
vegStartedOn date (YYYY-MM-DD) Must be > startedOn and < flowerStartedOn
flowerStartedOn date (YYYY-MM-DD) Must be > vegStartedOn

If the plant is a clone, stage will default to veg and vegStartedOn be set to the value of startedOn

Possible POST responses

HTTP 201

Successfully created plant. Response contains the newly-created plant. For example:

{
  "_id": "662849f8b87798f29434dc23",
  "status": "active",
  "source": "seed",
  "name": "Roma Tomato 1",
  "stage": "veg",
  "startedOn": "2024-04-23T00:00:00.000+00:00",
  "potentialHarvest": "2024-06-25T00:00:00.000+00:00",
  "plantAbbr": "RT1-1",
  "createdAt": "2024-04-23T23:53:28.245+00:00",
  "updatedAt": "2024-04-24T12:39:59.743+00:00",
  "vegStartedOn": "2024-04-23T00:00:00.000+00:00"
}

HTTP 409

An active plant with the same name already exists. See API Errors below.

HTTP 500

An unrecoverable error occurred. See API Errors below.

Get all plants

GET /api/v1/plants

List of plants will be filtered by any request parameters provided.

Valid GET /api/v1/plants request parameters

Field: Type: Notes:
status active|archived|inactive Defaults to ‘active’
name string
stage seedling|veg|flower|harvested|cure
startedOn date (YYYY-MM-DD)
vegStartedOn date (YYYY-MM-DD)
flowerStartedOn date (YYYY-MM-DD)
harvestedOn date (YYYY-MM-DD)
cureStartedOn date (YYYY-MM-DD)
archivedOn date (YYYY-MM-DD)

Possible GET /api/v1/plants responses

HTTP 200

Successfully found plants. Contains array of matching plant objects in response body. For example:

[
  {
    "_id": "662849f8b87798f29434dc23",
    "status": "active",
    "source": "seed",
    "name": "Roma Tomato 1",
    "stage": "veg",
    "startedOn": "2024-04-23T00:00:00.000+00:00",
    "potentialHarvest": "2024-06-25T00:00:00.000+00:00",
    "plantAbbr": "RT1-1",
    "createdAt": "2024-04-23T23:53:28.245+00:00",
    "updatedAt": "2024-04-24T12:39:59.743+00:00",
    "vegStartedOn": "2024-04-23T00:00:00.000+00:00"
  },
  {
    "_id": "98f29434dc23662849f8b877",
    "status": "active",
    "source": "seed",
    "name": "Cherry Tomato 1",
    "stage": "veg",
    "startedOn": "2024-04-23T00:00:00.000+00:00",
    "potentialHarvest": "2024-06-25T00:00:00.000+00:00",
    "plantAbbr": "CT1-1",
    "createdAt": "2024-04-23T23:53:28.245+00:00",
    "updatedAt": "2024-04-24T12:39:59.743+00:00",
    "vegStartedOn": "2024-04-23T00:00:00.000+00:00"
  },
  ...
]

HTTP 404

No plants found matching the request data provided. See API Errors below.

HTTP 500

An unrecoverable error occurred. See API Errors below.

Get a particular plant

GET /api/v1/plants/{plantId}

Valid GET /api/v1/plants/{plantId} request parameters

See valid request parameters for GET /api/v1/plants above.

Possible GET /api/v1/plants/{plantId} responses

HTTP 200

Successfully found plant. Contains found plant object in response body. For example:

{
  "_id": "662849f8b87798f29434dc23",
  "status": "active",
  "source": "seed",
  "name": "Roma Tomato 1",
  "stage": "veg",
  "startedOn": "2024-04-23T00:00:00.000+00:00",
  "potentialHarvest": "2024-06-25T00:00:00.000+00:00",
  "plantAbbr": "RT1-1",
  "createdAt": "2024-04-23T23:53:28.245+00:00",
  "updatedAt": "2024-04-24T12:39:59.743+00:00",
  "vegStartedOn": "2024-04-23T00:00:00.000+00:00"
}

HTTP 404

Plant not found. See API Errors below.

HTTP 500

An unrecoverable error occurred. See API Errors below.

Update a plant

PUT /api/v1/plants/{plantId}

Valid HTTP request parameters

Field: Type: Notes:
name string
source seed|clone
stage seedling|veg|flower|harvested|cure See notes below*
notes string
startedOn date (YYYY-MM-DD) Must be <= vegStartedOn
vegStartedOn date (YYYY-MM-DD) Must be >= startedOn and < flowerStartedOn
flowerStartedOn date (YYYY-MM-DD) Must be > vegStartedOn and < harvestedOn
harvestedOn date (YYYY-MM-DD) Must be > harvestedOn and < cureStartedOn
cureStartedOn date (YYYY-MM-DD) Must be > harvestedOn

*If the plant stage changes, the dates will be updated accordingly. For example:

Possible PUT responses

HTTP 200

Successfully updated plant. Contains the updated plant in body. For example:

{
  "_id": "662849f8b87798f29434dc23",
  "status": "active",
  "source": "seed",
  "name": "Roma Tomato 1",
  "stage": "veg",
  "startedOn": "2024-04-23T00:00:00.000+00:00",
  "potentialHarvest": "2024-06-25T00:00:00.000+00:00",
  "plantAbbr": "RT1-1",
  "createdAt": "2024-04-23T23:53:28.245+00:00",
  "updatedAt": "2024-04-24T12:39:59.743+00:00",
  "vegStartedOn": "2024-04-23T00:00:00.000+00:00"
}

HTTP 404

Plant not found. See API Errors below.

HTTP 409

An active plant with the same name already exists. See API Errors below.

HTTP 500

An unrecoverable error occurred. See API Errors below.

Examples

To move a plant from seedling to veg, send the following to PUT /api/v1/plants/{plantId}:

{
  "stage": "veg"
}

To move a plant from seedling to veg and set the start date to '2024-04-20', send a PUT request to /api/v1/plants/{plantId} with the following request parameters:

{
  "stage": "veg",
  "vegStartedOn": "2024-04-20"
}

To rename a plant from 'Tomato Plant 1' to 'Roma Tomato Plant 1', send a PUT request to /api/v1/plants/{plantId} with the following request parameters:

{
  "name": "Roma Tomato Plant 1"
}

Delete a plant

DELETE /api/v1/plants/{plantId}

Possible responses:

API Errors

If an error occurs, a response will be returned with the error message in the body. For example:

{ "error": "Something bad happened." }

Completeness level

Other Planned Features


Change Log