Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Plant to add to the store
curl --request POST \
--url http://sandbox.mintlify.com/plants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"tag": "<string>",
"id": 123
}'
{
"name": "<string>",
"tag": "<string>"
}
Creates a new plant in the store
curl --request POST \
--url http://sandbox.mintlify.com/plants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"tag": "<string>",
"id": 123
}'
{
"name": "<string>",
"tag": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Plant to add to the store
Was this page helpful?