11 KiB
Petstore::PetApi
All URIs are relative to http://petstore.swagger.io/v2
Method | HTTP request | Description |
---|---|---|
add_pet | POST /pet | Add a new pet to the store |
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 | DELETE /pet/{petId} | Deletes a pet |
find_pets_by_status | GET /pet/findByStatus | Finds Pets by status |
find_pets_by_tags | GET /pet/findByTags | Finds Pets by tags |
get_pet_by_id | GET /pet/{petId} | Find pet by ID |
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 | GET /pet/{petId}?testing_byte_array=true | Fake endpoint to test byte array return by 'Find pet by ID' |
update_pet | PUT /pet | Update an existing pet |
update_pet_with_form | POST /pet/{petId} | Updates a pet in the store with form data |
upload_file | POST /pet/{petId}/uploadImage | uploads an image |
add_pet
add_pet(opts)
Add a new pet to the store
Example
api = Petstore::PetApi.new
opts = {
body: ,
}
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 object that needs to be added to the store | [optional] |
Return type
nil (empty response body)
Authorization
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
api = Petstore::PetApi.new
opts = {
body: "B",
}
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
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
api = Petstore::PetApi.new
pet_id = 789 # [Integer] Pet id to delete
opts = {
api_key: "api_key_example",
}
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
HTTP reuqest headers
- Content-Type: Not defined
- Accept: application/json, application/xml
find_pets_by_status
Array find_pets_by_status(opts)
Finds Pets by status
Multiple status values can be provided with comma separated strings
Example
api = Petstore::PetApi.new
opts = {
status: ,
}
begin
result = api.find_pets_by_status(opts)
rescue Petstore::ApiError => e
puts "Exception when calling find_pets_by_status: #{e}"
end
Parameters
Name | Type | Description | Notes |
---|---|---|---|
status | Array<String> | Status values that need to be considered for query | [optional] [default to available] |
Return type
Authorization
HTTP reuqest headers
- Content-Type: Not defined
- Accept: application/json, application/xml
find_pets_by_tags
Array 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
api = Petstore::PetApi.new
opts = {
tags: ,
}
begin
result = api.find_pets_by_tags(opts)
rescue Petstore::ApiError => e
puts "Exception when calling find_pets_by_tags: #{e}"
end
Parameters
Name | Type | Description | Notes |
---|---|---|---|
tags | Array<String> | Tags to filter by | [optional] |
Return type
Authorization
HTTP reuqest headers
- Content-Type: Not defined
- Accept: application/json, application/xml
get_pet_by_id
Pet get_pet_by_id(pet_id, opts)
Find pet by ID
Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions
Example
api = Petstore::PetApi.new
pet_id = 789 # [Integer] ID of pet that needs to be fetched
opts = {
}
begin
result = api.get_pet_by_id(pet_id, opts)
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
Authorization
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, opts)
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
api = Petstore::PetApi.new
pet_id = 789 # [Integer] ID of pet that needs to be fetched
opts = {
}
begin
result = api.get_pet_by_id_in_object(pet_id, opts)
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
Authorization
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, opts)
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
api = Petstore::PetApi.new
pet_id = 789 # [Integer] ID of pet that needs to be fetched
opts = {
}
begin
result = api.pet_pet_idtesting_byte_arraytrue_get(pet_id, opts)
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
HTTP reuqest headers
- Content-Type: Not defined
- Accept: application/json, application/xml
update_pet
update_pet(opts)
Update an existing pet
Example
api = Petstore::PetApi.new
opts = {
body: ,
}
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 object that needs to be added to the store | [optional] |
Return type
nil (empty response body)
Authorization
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
api = Petstore::PetApi.new
pet_id = "pet_id_example" # [String] ID of pet that needs to be updated
opts = {
name: "name_example",
status: "status_example",
}
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
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
api = Petstore::PetApi.new
pet_id = 789 # [Integer] ID of pet to update
opts = {
additional_metadata: "additional_metadata_example",
file: "/path/to/file.txt",
}
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
HTTP reuqest headers
- Content-Type: multipart/form-data
- Accept: application/json, application/xml