API Reference V1
Workspaces
Calls
Batch Calls
Telephony
Conversations
Folder Management
Call Flows
Message Flows
Call Agents
Create Plant
Creates a new plant in the store
POST
/
plants
Copy
Ask AI
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
}'
Copy
Ask AI
{
"name": "<string>",
"tag": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Plant to add to the store
The body is of type object
.
Response
200
application/json
plant response
The response is of type object
.
Copy
Ask AI
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
}'
Copy
Ask AI
{
"name": "<string>",
"tag": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.