class KPM::NexusFacade::NexusApiCallsV2

def search_for_artifacts(coordinates)

def search_for_artifacts(coordinates)
  logger.debug "Entered - Search for artifact, coordinates: #{coordinates}"
  response = get_response(coordinates, SEARCH_FOR_ARTIFACT_ENDPOINT, [:g, :a])
  case response.code
    when '200'
      logger.debug "response body: #{response.body}"
      return response.body
    else
      raise UnexpectedStatusCodeException.new(response.code)
  end
end