Endpoint Examples
Get Plants
Returns all plants from the system that the user has access to
GET
/
plants
Authorization
Query
curl --request GET \
--url http://sandbox.mintlify.com/plants \
--header 'Authorization: <authorization>'
[
{
"name": "<string>",
"tag": "<string>"
}
]
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
limit
integer
The maximum number of results to return
Response
200 - application/json
name
string
requiredThe name of the plant
tag
string
Tag to specify the type
curl --request GET \
--url http://sandbox.mintlify.com/plants \
--header 'Authorization: <authorization>'
[
{
"name": "<string>",
"tag": "<string>"
}
]