Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The maximum number of results to return
curl --request GET \
--url http://sandbox.mintlify.com/plants \
--header 'Authorization: Bearer <token>'
[
{
"name": "<string>",
"tag": "<string>"
}
]
Returns all plants from the system that the user has access to
curl --request GET \
--url http://sandbox.mintlify.com/plants \
--header 'Authorization: Bearer <token>'
[
{
"name": "<string>",
"tag": "<string>"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The maximum number of results to return
Was this page helpful?