All URIs are relative to http://petstore.swagger.io/v2
Method | HTTP request | Description |
---|---|---|
deleteOrder | DELETE /store/order/{orderId} | Delete purchase order by ID |
getInventory | GET /store/inventory | Returns pet inventories by status |
getOrderById | GET /store/order/{orderId} | Find purchase order by ID |
placeOrder | POST /store/order | Place an order for a pet |
deleteOrder($orderId)
Delete purchase order by ID
For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\StoreApi();
$orderId = 789; // int | ID of the order that needs to be deleted
try {
$api_instance->deleteOrder($orderId);
} catch (Exception $e) {
echo 'Exception when calling StoreApi->deleteOrder: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
orderId | int | ID of the order that needs to be deleted |
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
map[string,int] getInventory()
Returns pet inventories by status
Returns a map of status codes to quantities
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
Appkr\PetStore\Configuration::getDefaultConfiguration()->setApiKey('api_key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Appkr\PetStore\Configuration::getDefaultConfiguration()->setApiKeyPrefix('api_key', 'Bearer');
$api_instance = new Appkr\PetStore\Api\StoreApi();
try {
$result = $api_instance->getInventory();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling StoreApi->getInventory: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Appkr\PetStore\Model\Order getOrderById($orderId)
Find purchase order by ID
For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\StoreApi();
$orderId = 789; // int | ID of pet that needs to be fetched
try {
$result = $api_instance->getOrderById($orderId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling StoreApi->getOrderById: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
orderId | int | ID of pet that needs to be fetched |
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Appkr\PetStore\Model\Order placeOrder($body)
Place an order for a pet
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\StoreApi();
$body = new \Appkr\PetStore\Model\Order(); // \Appkr\PetStore\Model\Order | order placed for purchasing the pet
try {
$result = $api_instance->placeOrder($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling StoreApi->placeOrder: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Appkr\PetStore\Model\Order | order placed for purchasing the pet |
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]