cURL
curl --request GET \ --url http://localhost:3001/plants \ --header 'Authorization: Bearer <token>'
[ { "name": "Monstera Deliciosa", "tag": "<string>", "related_plants": [ { "name": "<string>" } ] } ]
Returns all plants from the system that the user has access to
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The maximum number of results to return
Plant response
The name of the plant
Pure-string tag to specify the type
Related plants
Plant name
Show child attributes
Was this page helpful?