ESI::DogmaApi

All URIs are relative to https://esi.evetech.net

Method HTTP request Description
get_dogma_attributes GET /v1/dogma/attributes/ Get attributes
get_dogma_attributes_attribute_id GET /v1/dogma/attributes/attribute_id/ Get attribute information
get_dogma_dynamic_items_type_id_item_id GET /v1/dogma/dynamic/items/type_id/item_id/ Get dynamic item information
get_dogma_effects GET /v1/dogma/effects/ Get effects
get_dogma_effects_effect_id GET /v2/dogma/effects/effect_id/ Get effect information

get_dogma_attributes

Array<Integer> get_dogma_attributes(opts)

Get attributes

Get a list of dogma attribute ids --- This route expires daily at 11:05

Example

# load the gem
require 'esi-client-bvv'

api_instance = ESI::DogmaApi.new

opts = { 
  datasource: "tranquility", # String | The server name you would like data from
  if_none_match: "if_none_match_example", # String | ETag from a previous request. A 304 will be returned if this matches the current ETag
}

begin
  #Get attributes
  result = api_instance.get_dogma_attributes(opts)
  p result
rescue ESI::ApiError => e
  puts "Exception when calling DogmaApi->get_dogma_attributes: #{e}"
end

Parameters

Name Type Description Notes
datasource String The server name you would like data from [optional] [default to tranquility]
if_none_match String ETag from a previous request. A 304 will be returned if this matches the current ETag [optional]

Return type

Array<Integer>

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

get_dogma_attributes_attribute_id

GetDogmaAttributesAttributeIdOk get_dogma_attributes_attribute_id(attribute_id, opts)

Get attribute information

Get information on a dogma attribute --- This route expires daily at 11:05

Example

# load the gem
require 'esi-client-bvv'

api_instance = ESI::DogmaApi.new

attribute_id = 56 # Integer | A dogma attribute ID

opts = { 
  datasource: "tranquility", # String | The server name you would like data from
  if_none_match: "if_none_match_example", # String | ETag from a previous request. A 304 will be returned if this matches the current ETag
}

begin
  #Get attribute information
  result = api_instance.get_dogma_attributes_attribute_id(attribute_id, opts)
  p result
rescue ESI::ApiError => e
  puts "Exception when calling DogmaApi->get_dogma_attributes_attribute_id: #{e}"
end

Parameters

Name Type Description Notes
attribute_id Integer A dogma attribute ID
datasource String The server name you would like data from [optional] [default to tranquility]
if_none_match String ETag from a previous request. A 304 will be returned if this matches the current ETag [optional]

Return type

GetDogmaAttributesAttributeIdOk

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

get_dogma_dynamic_items_type_id_item_id

GetDogmaDynamicItemsTypeIdItemIdOk get_dogma_dynamic_items_type_id_item_id(item_id, type_id, opts)

Get dynamic item information

Returns info about a dynamic item resulting from mutation with a mutaplasmid. --- This route expires daily at 11:05

Example

# load the gem
require 'esi-client-bvv'

api_instance = ESI::DogmaApi.new

item_id = 789 # Integer | item_id integer

type_id = 56 # Integer | type_id integer

opts = { 
  datasource: "tranquility", # String | The server name you would like data from
  if_none_match: "if_none_match_example", # String | ETag from a previous request. A 304 will be returned if this matches the current ETag
}

begin
  #Get dynamic item information
  result = api_instance.get_dogma_dynamic_items_type_id_item_id(item_id, type_id, opts)
  p result
rescue ESI::ApiError => e
  puts "Exception when calling DogmaApi->get_dogma_dynamic_items_type_id_item_id: #{e}"
end

Parameters

Name Type Description Notes
item_id Integer item_id integer
type_id Integer type_id integer
datasource String The server name you would like data from [optional] [default to tranquility]
if_none_match String ETag from a previous request. A 304 will be returned if this matches the current ETag [optional]

Return type

GetDogmaDynamicItemsTypeIdItemIdOk

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

get_dogma_effects

Array<Integer> get_dogma_effects(opts)

Get effects

Get a list of dogma effect ids --- This route expires daily at 11:05

Example

# load the gem
require 'esi-client-bvv'

api_instance = ESI::DogmaApi.new

opts = { 
  datasource: "tranquility", # String | The server name you would like data from
  if_none_match: "if_none_match_example", # String | ETag from a previous request. A 304 will be returned if this matches the current ETag
}

begin
  #Get effects
  result = api_instance.get_dogma_effects(opts)
  p result
rescue ESI::ApiError => e
  puts "Exception when calling DogmaApi->get_dogma_effects: #{e}"
end

Parameters

Name Type Description Notes
datasource String The server name you would like data from [optional] [default to tranquility]
if_none_match String ETag from a previous request. A 304 will be returned if this matches the current ETag [optional]

Return type

Array<Integer>

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

get_dogma_effects_effect_id

GetDogmaEffectsEffectIdOk get_dogma_effects_effect_id(effect_id, opts)

Get effect information

Get information on a dogma effect --- This route expires daily at 11:05

Example

# load the gem
require 'esi-client-bvv'

api_instance = ESI::DogmaApi.new

effect_id = 56 # Integer | A dogma effect ID

opts = { 
  datasource: "tranquility", # String | The server name you would like data from
  if_none_match: "if_none_match_example", # String | ETag from a previous request. A 304 will be returned if this matches the current ETag
}

begin
  #Get effect information
  result = api_instance.get_dogma_effects_effect_id(effect_id, opts)
  p result
rescue ESI::ApiError => e
  puts "Exception when calling DogmaApi->get_dogma_effects_effect_id: #{e}"
end

Parameters

Name Type Description Notes
effect_id Integer A dogma effect ID
datasource String The server name you would like data from [optional] [default to tranquility]
if_none_match String ETag from a previous request. A 304 will be returned if this matches the current ETag [optional]

Return type

GetDogmaEffectsEffectIdOk

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json