# Petstore::PetApi All URIs are relative to *http://petstore.swagger.io/v2* Method | HTTP request | Description ------------- | ------------- | ------------- [**add_pet**](PetApi.md#add_pet) | **POST** /pet | Add a new pet to the store [**add_pet_using_byte_array**](PetApi.md#add_pet_using_byte_array) | **POST** /pet?testing_byte_array=true | Fake endpoint to test byte array in body parameter for adding a new pet to the store [**delete_pet**](PetApi.md#delete_pet) | **DELETE** /pet/{petId} | Deletes a pet [**find_pets_by_status**](PetApi.md#find_pets_by_status) | **GET** /pet/findByStatus | Finds Pets by status [**find_pets_by_tags**](PetApi.md#find_pets_by_tags) | **GET** /pet/findByTags | Finds Pets by tags [**get_pet_by_id**](PetApi.md#get_pet_by_id) | **GET** /pet/{petId} | Find pet by ID [**get_pet_by_id_in_object**](PetApi.md#get_pet_by_id_in_object) | **GET** /pet/{petId}?response=inline_arbitrary_object | Fake endpoint to test inline arbitrary object return by 'Find pet by ID' [**pet_pet_idtesting_byte_arraytrue_get**](PetApi.md#pet_pet_idtesting_byte_arraytrue_get) | **GET** /pet/{petId}?testing_byte_array=true | Fake endpoint to test byte array return by 'Find pet by ID' [**update_pet**](PetApi.md#update_pet) | **PUT** /pet | Update an existing pet [**update_pet_with_form**](PetApi.md#update_pet_with_form) | **POST** /pet/{petId} | Updates a pet in the store with form data [**upload_file**](PetApi.md#upload_file) | **POST** /pet/{petId}/uploadImage | uploads an image # **add_pet** > add_pet(opts) Add a new pet to the store ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new opts = { body: Petstore::Pet.new # [Pet] Pet object that needs to be added to the store } begin api.add_pet(opts) rescue Petstore::ApiError => e puts "Exception when calling add_pet: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **body** | [**Pet**](Pet.md)| Pet object that needs to be added to the store | [optional] ### Return type nil (empty response body) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: application/json, application/xml - **Accept**: application/json, application/xml # **add_pet_using_byte_array** > add_pet_using_byte_array(opts) Fake endpoint to test byte array in body parameter for adding a new pet to the store ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new opts = { body: "B" # [String] Pet object in the form of byte array } begin api.add_pet_using_byte_array(opts) rescue Petstore::ApiError => e puts "Exception when calling add_pet_using_byte_array: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **body** | **String**| Pet object in the form of byte array | [optional] ### Return type nil (empty response body) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: application/json, application/xml - **Accept**: application/json, application/xml # **delete_pet** > delete_pet(pet_id, opts) Deletes a pet ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new pet_id = 789 # [Integer] Pet id to delete opts = { api_key: "api_key_example" # [String] } begin api.delete_pet(pet_id, opts) rescue Petstore::ApiError => e puts "Exception when calling delete_pet: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **pet_id** | **Integer**| Pet id to delete | **api_key** | **String**| | [optional] ### Return type nil (empty response body) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: Not defined - **Accept**: application/json, application/xml # **find_pets_by_status** > Array<Pet> find_pets_by_status(opts) Finds Pets by status Multiple status values can be provided with comma separated strings ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new opts = { status: ["available"] # [Array] Status values that need to be considered for query } begin result = api.find_pets_by_status(opts) p result rescue Petstore::ApiError => e puts "Exception when calling find_pets_by_status: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **status** | [**Array<String>**](String.md)| Status values that need to be considered for query | [optional] [default to available] ### Return type [**Array<Pet>**](Pet.md) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: Not defined - **Accept**: application/json, application/xml # **find_pets_by_tags** > Array<Pet> find_pets_by_tags(opts) Finds Pets by tags Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing. ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new opts = { tags: ["tags_example"] # [Array] Tags to filter by } begin result = api.find_pets_by_tags(opts) p result rescue Petstore::ApiError => e puts "Exception when calling find_pets_by_tags: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **tags** | [**Array<String>**](String.md)| Tags to filter by | [optional] ### Return type [**Array<Pet>**](Pet.md) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: Not defined - **Accept**: application/json, application/xml # **get_pet_by_id** > Pet get_pet_by_id(pet_id) Find pet by ID Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure API key authorization: api_key config.api_key['api_key'] = "YOUR API KEY" # Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to nil) #config.api_key_prefix['api_key'] = "Token" # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new pet_id = 789 # [Integer] ID of pet that needs to be fetched begin result = api.get_pet_by_id(pet_id) p result rescue Petstore::ApiError => e puts "Exception when calling get_pet_by_id: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **pet_id** | **Integer**| ID of pet that needs to be fetched | ### Return type [**Pet**](Pet.md) ### Authorization [api_key](../README.md#api_key), [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: Not defined - **Accept**: application/json, application/xml # **get_pet_by_id_in_object** > InlineResponse200 get_pet_by_id_in_object(pet_id) Fake endpoint to test inline arbitrary object return by 'Find pet by ID' Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure API key authorization: api_key config.api_key['api_key'] = "YOUR API KEY" # Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to nil) #config.api_key_prefix['api_key'] = "Token" # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new pet_id = 789 # [Integer] ID of pet that needs to be fetched begin result = api.get_pet_by_id_in_object(pet_id) p result rescue Petstore::ApiError => e puts "Exception when calling get_pet_by_id_in_object: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **pet_id** | **Integer**| ID of pet that needs to be fetched | ### Return type [**InlineResponse200**](InlineResponse200.md) ### Authorization [api_key](../README.md#api_key), [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: Not defined - **Accept**: application/json, application/xml # **pet_pet_idtesting_byte_arraytrue_get** > String pet_pet_idtesting_byte_arraytrue_get(pet_id) Fake endpoint to test byte array return by 'Find pet by ID' Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure API key authorization: api_key config.api_key['api_key'] = "YOUR API KEY" # Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to nil) #config.api_key_prefix['api_key'] = "Token" # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new pet_id = 789 # [Integer] ID of pet that needs to be fetched begin result = api.pet_pet_idtesting_byte_arraytrue_get(pet_id) p result rescue Petstore::ApiError => e puts "Exception when calling pet_pet_idtesting_byte_arraytrue_get: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **pet_id** | **Integer**| ID of pet that needs to be fetched | ### Return type **String** ### Authorization [api_key](../README.md#api_key), [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: Not defined - **Accept**: application/json, application/xml # **update_pet** > update_pet(opts) Update an existing pet ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new opts = { body: Petstore::Pet.new # [Pet] Pet object that needs to be added to the store } begin api.update_pet(opts) rescue Petstore::ApiError => e puts "Exception when calling update_pet: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **body** | [**Pet**](Pet.md)| Pet object that needs to be added to the store | [optional] ### Return type nil (empty response body) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: application/json, application/xml - **Accept**: application/json, application/xml # **update_pet_with_form** > update_pet_with_form(pet_id, opts) Updates a pet in the store with form data ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new pet_id = "pet_id_example" # [String] ID of pet that needs to be updated opts = { name: "name_example", # [String] Updated name of the pet status: "status_example" # [String] Updated status of the pet } begin api.update_pet_with_form(pet_id, opts) rescue Petstore::ApiError => e puts "Exception when calling update_pet_with_form: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **pet_id** | **String**| 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 nil (empty response body) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: application/x-www-form-urlencoded - **Accept**: application/json, application/xml # **upload_file** > upload_file(pet_id, opts) uploads an image ### Example ```ruby require 'petstore' Petstore.configure do |config| # Configure OAuth2 access token for authorization: petstore_auth config.access_token = "YOUR ACCESS TOKEN" end api = Petstore::PetApi.new pet_id = 789 # [Integer] ID of pet to update opts = { additional_metadata: "additional_metadata_example", # [String] Additional data to pass to server file: File.new("/path/to/file.txt") # [File] file to upload } begin api.upload_file(pet_id, opts) rescue Petstore::ApiError => e puts "Exception when calling upload_file: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **pet_id** | **Integer**| ID of pet to update | **additional_metadata** | **String**| Additional data to pass to server | [optional] **file** | **File**| file to upload | [optional] ### Return type nil (empty response body) ### Authorization [petstore_auth](../README.md#petstore_auth) ### HTTP reuqest headers - **Content-Type**: multipart/form-data - **Accept**: application/json, application/xml