All URIs are relative to http://localhost/v2
| Method | HTTP request | Description |
|---|---|---|
| deleteOrder | DELETE /store/order/{order_id} | Delete purchase order by ID |
| getInventory | GET /store/inventory | Returns pet inventories by status |
| getOrderById | GET /store/order/{order_id} | Find purchase order by ID |
| placeOrder | POST /store/order | Place an order for a pet |
open class func deleteOrder( orderId: String) -> Promise<Void>Delete purchase order by ID
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let orderId = "orderId_example" // String | ID of the order that needs to be deleted
// Delete purchase order by ID
StoreAPI.deleteOrder(orderId: orderId).then {
// when the promise is fulfilled
}.always {
// regardless of whether the promise is fulfilled, or rejected
}.catch { errorType in
// when the promise is rejected
}| Name | Type | Description | Notes |
|---|---|---|---|
| orderId | String | ID of the order that needs to be deleted |
Void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func getInventory() -> Promise<[String: Int]>Returns pet inventories by status
Returns a map of status codes to quantities
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
// Returns pet inventories by status
StoreAPI.getInventory().then {
// when the promise is fulfilled
}.always {
// regardless of whether the promise is fulfilled, or rejected
}.catch { errorType in
// when the promise is rejected
}This endpoint does not need any parameter.
[String: Int]
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func getOrderById( orderId: Int64) -> Promise<Order>Find purchase order by ID
For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let orderId = 987 // Int64 | ID of pet that needs to be fetched
// Find purchase order by ID
StoreAPI.getOrderById(orderId: orderId).then {
// when the promise is fulfilled
}.always {
// regardless of whether the promise is fulfilled, or rejected
}.catch { errorType in
// when the promise is rejected
}| Name | Type | Description | Notes |
|---|---|---|---|
| orderId | Int64 | ID of pet that needs to be fetched |
No authorization required
- Content-Type: Not defined
- Accept: application/xml, application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func placeOrder( body: Order) -> Promise<Order>Place an order for a pet
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let body = Order(id: 123, petId: 123, quantity: 123, shipDate: Date(), status: "status_example", complete: false) // Order | order placed for purchasing the pet
// Place an order for a pet
StoreAPI.placeOrder(body: body).then {
// when the promise is fulfilled
}.always {
// regardless of whether the promise is fulfilled, or rejected
}.catch { errorType in
// when the promise is rejected
}| Name | Type | Description | Notes |
|---|---|---|---|
| body | Order | order placed for purchasing the pet |
No authorization required
- Content-Type: Not defined
- Accept: application/xml, application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]