Skip to content

Latest commit

 

History

History
270 lines (187 loc) · 8.89 KB

File metadata and controls

270 lines (187 loc) · 8.89 KB

EveSwaggerInterface.DogmaApi

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

Method HTTP request Description
getDogmaAttributes GET /dogma/attributes/ Get attributes
getDogmaAttributesAttributeId GET /dogma/attributes/{attribute_id}/ Get attribute information
getDogmaDynamicItemsTypeIdItemId GET /dogma/dynamic/items/{type_id}/{item_id}/ Get dynamic item information
getDogmaEffects GET /dogma/effects/ Get effects
getDogmaEffectsEffectId GET /dogma/effects/{effect_id}/ Get effect information

getDogmaAttributes

['Number'] getDogmaAttributes(opts)

Get attributes

Get a list of dogma attribute ids --- Alternate route: /dev/dogma/attributes/ Alternate route: /legacy/dogma/attributes/ Alternate route: /v1/dogma/attributes/ --- This route expires daily at 11:05

Example

var EveSwaggerInterface = require('eve_swagger_interface');

var apiInstance = new EveSwaggerInterface.DogmaApi();

var opts = { 
  'datasource': "tranquility", // String | The server name you would like data from
  'ifNoneMatch': "ifNoneMatch_example", // String | ETag from a previous request. A 304 will be returned if this matches the current ETag
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.getDogmaAttributes(opts, callback);

Parameters

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

Return type

['Number']

Authorization

No authorization required

HTTP request headers

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

getDogmaAttributesAttributeId

GetDogmaAttributesAttributeIdOk getDogmaAttributesAttributeId(attributeId, opts)

Get attribute information

Get information on a dogma attribute --- Alternate route: /dev/dogma/attributes/{attribute_id}/ Alternate route: /legacy/dogma/attributes/{attribute_id}/ Alternate route: /v1/dogma/attributes/{attribute_id}/ --- This route expires daily at 11:05

Example

var EveSwaggerInterface = require('eve_swagger_interface');

var apiInstance = new EveSwaggerInterface.DogmaApi();

var attributeId = 56; // Number | A dogma attribute ID

var opts = { 
  'datasource': "tranquility", // String | The server name you would like data from
  'ifNoneMatch': "ifNoneMatch_example", // String | ETag from a previous request. A 304 will be returned if this matches the current ETag
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.getDogmaAttributesAttributeId(attributeId, opts, callback);

Parameters

Name Type Description Notes
attributeId Number A dogma attribute ID
datasource String The server name you would like data from [optional] [default to tranquility]
ifNoneMatch 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

getDogmaDynamicItemsTypeIdItemId

GetDogmaDynamicItemsTypeIdItemIdOk getDogmaDynamicItemsTypeIdItemId(itemId, typeId, opts)

Get dynamic item information

Returns info about a dynamic item resulting from mutation with a mutaplasmid. --- Alternate route: /dev/dogma/dynamic/items/{type_id}/{item_id}/ Alternate route: /legacy/dogma/dynamic/items/{type_id}/{item_id}/ Alternate route: /v1/dogma/dynamic/items/{type_id}/{item_id}/ --- This route expires daily at 11:05

Example

var EveSwaggerInterface = require('eve_swagger_interface');

var apiInstance = new EveSwaggerInterface.DogmaApi();

var itemId = 789; // Number | item_id integer

var typeId = 56; // Number | type_id integer

var opts = { 
  'datasource': "tranquility", // String | The server name you would like data from
  'ifNoneMatch': "ifNoneMatch_example", // String | ETag from a previous request. A 304 will be returned if this matches the current ETag
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.getDogmaDynamicItemsTypeIdItemId(itemId, typeId, opts, callback);

Parameters

Name Type Description Notes
itemId Number item_id integer
typeId Number type_id integer
datasource String The server name you would like data from [optional] [default to tranquility]
ifNoneMatch 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

getDogmaEffects

['Number'] getDogmaEffects(opts)

Get effects

Get a list of dogma effect ids --- Alternate route: /dev/dogma/effects/ Alternate route: /legacy/dogma/effects/ Alternate route: /v1/dogma/effects/ --- This route expires daily at 11:05

Example

var EveSwaggerInterface = require('eve_swagger_interface');

var apiInstance = new EveSwaggerInterface.DogmaApi();

var opts = { 
  'datasource': "tranquility", // String | The server name you would like data from
  'ifNoneMatch': "ifNoneMatch_example", // String | ETag from a previous request. A 304 will be returned if this matches the current ETag
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.getDogmaEffects(opts, callback);

Parameters

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

Return type

['Number']

Authorization

No authorization required

HTTP request headers

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

getDogmaEffectsEffectId

GetDogmaEffectsEffectIdOk getDogmaEffectsEffectId(effectId, opts)

Get effect information

Get information on a dogma effect --- Alternate route: /dev/dogma/effects/{effect_id}/ Alternate route: /v2/dogma/effects/{effect_id}/ --- This route expires daily at 11:05

Example

var EveSwaggerInterface = require('eve_swagger_interface');

var apiInstance = new EveSwaggerInterface.DogmaApi();

var effectId = 56; // Number | A dogma effect ID

var opts = { 
  'datasource': "tranquility", // String | The server name you would like data from
  'ifNoneMatch': "ifNoneMatch_example", // String | ETag from a previous request. A 304 will be returned if this matches the current ETag
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.getDogmaEffectsEffectId(effectId, opts, callback);

Parameters

Name Type Description Notes
effectId Number A dogma effect ID
datasource String The server name you would like data from [optional] [default to tranquility]
ifNoneMatch 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