198 lines
4.9 KiB
Markdown
198 lines
4.9 KiB
Markdown
# StoreApi
|
|
|
|
All URIs are relative to *http://petstore.swagger.io/v2*
|
|
|
|
Method | HTTP request | Description
|
|
------------- | ------------- | -------------
|
|
[**deleteOrder**](StoreApi.md#deleteOrder) | **DELETE** /store/order/{orderId} | Delete purchase order by ID
|
|
[**getInventory**](StoreApi.md#getInventory) | **GET** /store/inventory | Returns pet inventories by status
|
|
[**getOrderById**](StoreApi.md#getOrderById) | **GET** /store/order/{orderId} | Find purchase order by ID
|
|
[**placeOrder**](StoreApi.md#placeOrder) | **POST** /store/order | Place an order for a pet
|
|
|
|
|
|
<a name="deleteOrder"></a>
|
|
# **deleteOrder**
|
|
> 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
|
|
|
|
### Example
|
|
```java
|
|
// Import classes:
|
|
//import com.baeldung.petstore.client.invoker.ApiException;
|
|
//import com.baeldung.petstore.client.api.StoreApi;
|
|
|
|
|
|
StoreApi apiInstance = new StoreApi();
|
|
Long orderId = 789L; // Long | ID of the order that needs to be deleted
|
|
try {
|
|
apiInstance.deleteOrder(orderId);
|
|
} catch (ApiException e) {
|
|
System.err.println("Exception when calling StoreApi#deleteOrder");
|
|
e.printStackTrace();
|
|
}
|
|
```
|
|
|
|
### Parameters
|
|
|
|
Name | Type | Description | Notes
|
|
------------- | ------------- | ------------- | -------------
|
|
**orderId** | **Long**| ID of the order that needs to be deleted |
|
|
|
|
### Return type
|
|
|
|
null (empty response body)
|
|
|
|
### Authorization
|
|
|
|
No authorization required
|
|
|
|
### HTTP request headers
|
|
|
|
- **Content-Type**: Not defined
|
|
- **Accept**: application/xml, application/json
|
|
|
|
<a name="getInventory"></a>
|
|
# **getInventory**
|
|
> Map<String, Integer> getInventory()
|
|
|
|
Returns pet inventories by status
|
|
|
|
Returns a map of status codes to quantities
|
|
|
|
### Example
|
|
```java
|
|
// Import classes:
|
|
//import com.baeldung.petstore.client.invoker.ApiClient;
|
|
//import com.baeldung.petstore.client.invoker.ApiException;
|
|
//import com.baeldung.petstore.client.invoker.Configuration;
|
|
//import com.baeldung.petstore.client.invoker.auth.*;
|
|
//import com.baeldung.petstore.client.api.StoreApi;
|
|
|
|
ApiClient defaultClient = Configuration.getDefaultApiClient();
|
|
|
|
// Configure API key authorization: api_key
|
|
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
|
|
api_key.setApiKey("YOUR API KEY");
|
|
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
|
|
//api_key.setApiKeyPrefix("Token");
|
|
|
|
StoreApi apiInstance = new StoreApi();
|
|
try {
|
|
Map<String, Integer> result = apiInstance.getInventory();
|
|
System.out.println(result);
|
|
} catch (ApiException e) {
|
|
System.err.println("Exception when calling StoreApi#getInventory");
|
|
e.printStackTrace();
|
|
}
|
|
```
|
|
|
|
### Parameters
|
|
This endpoint does not need any parameter.
|
|
|
|
### Return type
|
|
|
|
[**Map<String, Integer>**](Map.md)
|
|
|
|
### Authorization
|
|
|
|
[api_key](../README.md#api_key)
|
|
|
|
### HTTP request headers
|
|
|
|
- **Content-Type**: Not defined
|
|
- **Accept**: application/json
|
|
|
|
<a name="getOrderById"></a>
|
|
# **getOrderById**
|
|
> Order getOrderById(orderId)
|
|
|
|
Find purchase order by ID
|
|
|
|
For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions
|
|
|
|
### Example
|
|
```java
|
|
// Import classes:
|
|
//import com.baeldung.petstore.client.invoker.ApiException;
|
|
//import com.baeldung.petstore.client.api.StoreApi;
|
|
|
|
|
|
StoreApi apiInstance = new StoreApi();
|
|
Long orderId = 789L; // Long | ID of pet that needs to be fetched
|
|
try {
|
|
Order result = apiInstance.getOrderById(orderId);
|
|
System.out.println(result);
|
|
} catch (ApiException e) {
|
|
System.err.println("Exception when calling StoreApi#getOrderById");
|
|
e.printStackTrace();
|
|
}
|
|
```
|
|
|
|
### Parameters
|
|
|
|
Name | Type | Description | Notes
|
|
------------- | ------------- | ------------- | -------------
|
|
**orderId** | **Long**| ID of pet that needs to be fetched |
|
|
|
|
### Return type
|
|
|
|
[**Order**](Order.md)
|
|
|
|
### Authorization
|
|
|
|
No authorization required
|
|
|
|
### HTTP request headers
|
|
|
|
- **Content-Type**: Not defined
|
|
- **Accept**: application/xml, application/json
|
|
|
|
<a name="placeOrder"></a>
|
|
# **placeOrder**
|
|
> Order placeOrder(body)
|
|
|
|
Place an order for a pet
|
|
|
|
|
|
|
|
### Example
|
|
```java
|
|
// Import classes:
|
|
//import com.baeldung.petstore.client.invoker.ApiException;
|
|
//import com.baeldung.petstore.client.api.StoreApi;
|
|
|
|
|
|
StoreApi apiInstance = new StoreApi();
|
|
Order body = new Order(); // Order | order placed for purchasing the pet
|
|
try {
|
|
Order result = apiInstance.placeOrder(body);
|
|
System.out.println(result);
|
|
} catch (ApiException e) {
|
|
System.err.println("Exception when calling StoreApi#placeOrder");
|
|
e.printStackTrace();
|
|
}
|
|
```
|
|
|
|
### Parameters
|
|
|
|
Name | Type | Description | Notes
|
|
------------- | ------------- | ------------- | -------------
|
|
**body** | [**Order**](Order.md)| order placed for purchasing the pet |
|
|
|
|
### Return type
|
|
|
|
[**Order**](Order.md)
|
|
|
|
### Authorization
|
|
|
|
No authorization required
|
|
|
|
### HTTP request headers
|
|
|
|
- **Content-Type**: Not defined
|
|
- **Accept**: application/xml, application/json
|
|
|