12 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	PetAPI
All URIs are relative to http://petstore.swagger.io:80/v2
| Method | HTTP request | Description | 
|---|---|---|
| addPet | POST /pet | Add a new pet to the store | 
| deletePet | DELETE /pet/{petId} | Deletes a pet | 
| findPetsByStatus | GET /pet/findByStatus | Finds Pets by status | 
| findPetsByTags | GET /pet/findByTags | Finds Pets by tags | 
| getPetById | GET /pet/{petId} | Find pet by ID | 
| updatePet | PUT /pet | Update an existing pet | 
| updatePetWithForm | POST /pet/{petId} | Updates a pet in the store with form data | 
| uploadFile | POST /pet/{petId}/uploadImage | uploads an image | 
| uploadFileWithRequiredFile | POST /fake/{petId}/uploadImageWithRequiredFile | uploads an image (required) | 
addPet
    open class func addPet(body: Pet) -> Observable<Void>
Add a new pet to the store
Example
// 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 = Pet(id: 123, category: Category(id: 123, name: "name_example"), name: "name_example", photoUrls: ["photoUrls_example"], tags: [Tag(id: 123, name: "name_example")], status: "status_example") // Pet | Pet object that needs to be added to the store
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| body | Pet | Pet object that needs to be added to the store | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/json, application/xml
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deletePet
    open class func deletePet(petId: Int64, apiKey: String? = nil) -> Observable<Void>
Deletes a pet
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | Pet id to delete
let apiKey = "apiKey_example" // String |  (optional)
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | Pet id to delete | |
| apiKey | String | [optional] | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
findPetsByStatus
    open class func findPetsByStatus(status: [Status_findPetsByStatus]) -> Observable<[Pet]>
Finds Pets by status
Multiple status values can be provided with comma separated strings
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let status = ["status_example"] // [String] | Status values that need to be considered for filter
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| status | [String] | Status values that need to be considered for filter | 
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: application/xml, application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
findPetsByTags
    open class func findPetsByTags(tags: [String]) -> Observable<[Pet]>
Finds Pets by tags
Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let tags = ["inner_example"] // [String] | Tags to filter by
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| tags | [String] | Tags to filter by | 
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: application/xml, application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getPetById
    open class func getPetById(petId: Int64) -> Observable<Pet>
Find pet by ID
Returns a single pet
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet to return
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet to return | 
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: application/xml, application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatePet
    open class func updatePet(body: Pet) -> Observable<Void>
Update an existing pet
Example
// 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 = Pet(id: 123, category: Category(id: 123, name: "name_example"), name: "name_example", photoUrls: ["photoUrls_example"], tags: [Tag(id: 123, name: "name_example")], status: "status_example") // Pet | Pet object that needs to be added to the store
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| body | Pet | Pet object that needs to be added to the store | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/json, application/xml
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatePetWithForm
    open class func updatePetWithForm(petId: Int64, name: String? = nil, status: String? = nil) -> Observable<Void>
Updates a pet in the store with form data
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet that needs to be updated
let name = "name_example" // String | Updated name of the pet (optional)
let status = "status_example" // String | Updated status of the pet (optional)
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet that needs to be updated | |
| name | String | Updated name of the pet | [optional] | 
| status | String | Updated status of the pet | [optional] | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/x-www-form-urlencoded
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
uploadFile
    open class func uploadFile(petId: Int64, additionalMetadata: String? = nil, file: URL? = nil) -> Observable<ApiResponse>
uploads an image
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet to update
let additionalMetadata = "additionalMetadata_example" // String | Additional data to pass to server (optional)
let file = URL(string: "https://example.com")! // URL | file to upload (optional)
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet to update | |
| additionalMetadata | String | Additional data to pass to server | [optional] | 
| file | URL | file to upload | [optional] | 
Return type
Authorization
HTTP request headers
- Content-Type: multipart/form-data
 - Accept: application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
uploadFileWithRequiredFile
    open class func uploadFileWithRequiredFile(petId: Int64, requiredFile: URL, additionalMetadata: String? = nil) -> Observable<ApiResponse>
uploads an image (required)
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet to update
let requiredFile = URL(string: "https://example.com")! // URL | file to upload
let additionalMetadata = "additionalMetadata_example" // String | Additional data to pass to server (optional)
// TODO RxSwift sample code not yet implemented. To contribute, please open a ticket via http://github.com/OpenAPITools/openapi-generator/issues/new
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet to update | |
| requiredFile | URL | file to upload | |
| additionalMetadata | String | Additional data to pass to server | [optional] | 
Return type
Authorization
HTTP request headers
- Content-Type: multipart/form-data
 - Accept: application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]