v1.0.0
OpenAPI Plant Store
A sample API that uses a plant store as an example to demonstrate features in the OpenAPI specification
Servers
http://sandbox.mintlify.com
ID: get-plants
GET /plants
GET
/plants
Returns all plants from the system that the user has access to
Authorizations
bearerAuth
TypeHTTP (bearer)
Parameters
Query Parameters
limit
The maximum number of results to return
Typeinteger
format
int32
Responses
Plant responseSchema JSON JSON
application/json
[
{
"name": "string",
"tag": "string"
}
]
GET
/plants
Samples
curl http://sandbox.mintlify.com/plants \
--header 'Authorization: Bearer bearerAuth' \
--header 'Content-Type: application/json'
fetch('http://sandbox.mintlify.com/plants', {
headers: {
Authorization: 'Bearer bearerAuth',
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://sandbox.mintlify.com/plants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer bearerAuth",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://sandbox.mintlify.com/plants"
headers = {
"Authorization": "Bearer bearerAuth",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
ID: post-plants
POST /plants
POST
/plants
Creates a new plant in the store
Authorizations
bearerAuth
TypeHTTP (bearer)
Request Body
{
"name": "string",
"tag": "string",
"id": 0
}
Responses
plant responseSchema JSON JSON
application/json
{
"name": "string",
"tag": "string"
}
POST
/plants
Samples
curl http://sandbox.mintlify.com/plants \
--request POST \
--header 'Authorization: Bearer bearerAuth' \
--header 'Content-Type: application/json' \
--data '{
"name": "string",
"tag": "string",
"id": 0
}'
fetch('http://sandbox.mintlify.com/plants', {
method: 'POST',
headers: {
Authorization: 'Bearer bearerAuth',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'string',
tag: 'string',
id: 0
})
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://sandbox.mintlify.com/plants",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'string',
'tag' => 'string',
'id' => 0
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer bearerAuth",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://sandbox.mintlify.com/plants"
payload = {
"name": "string",
"tag": "string",
"id": 0
}
headers = {
"Authorization": "Bearer bearerAuth",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
ID: delete-plants-{id}
DELETE /plants/{id}
DELETE
/plants/{id}
Deletes a single plant based on the ID supplied
Authorizations
bearerAuth
TypeHTTP (bearer)
Parameters
Path Parameters
id*
ID of plant to delete
Typeinteger
Requiredformat
int64
Responses
Plant deleted
DELETE
/plants/{id}
Samples
curl 'http://sandbox.mintlify.com/plants/%7Bid%7D' \
--request DELETE \
--header 'Authorization: Bearer bearerAuth' \
--header 'Content-Type: application/json'
fetch('http://sandbox.mintlify.com/plants/%7Bid%7D', {
method: 'DELETE',
headers: {
Authorization: 'Bearer bearerAuth',
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://sandbox.mintlify.com/plants/%7Bid%7D",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer bearerAuth",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://sandbox.mintlify.com/plants/%7Bid%7D"
headers = {
"Authorization": "Bearer bearerAuth",
"Content-Type": "application/json"
}
response = requests.delete(url, headers=headers)
print(response.json())