module Ramco::API::EntityMetadata

Public Instance Methods

get_entity_metadata(params={}) click to toggle source

GetEntityMetadata Fetch metadata on entity type, including entity description, attributes and relationships Entity = Name of entity being queried, for example: Contact

{“entity” => “Contact”}

Returns json

# File lib/ramco/api/entity_metadata.rb, line 13
def get_entity_metadata(params={})
  params['operation'] = "GetEntityMetadata"
  request(connection, params)
end