Sha256: dc683b63df2f3ce1bc39cdb21bd74f80a822ab5214e9bd3a8bdb3cf600972eb2
Contents?: true
Size: 1.22 KB
Versions: 8
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true module Yext module Api module LiveApi # :live_api: # :objects: # :location: # :has_many: language_profile # :has_many: location_schema # :actions: # - :action: :index # :method: :get # :endpoint: https://liveapi.yext.com/v2/accounts/{accountId}/locations # :path_regex: https://liveapi.yext.com/v2/accounts/[^/]+?/locations # :default_version: 20161012 # :documentation: http://developer.yext.com/docs/live-api/#operation/locationsList # :sandbox_only: false # - :action: :show # :method: :get # :endpoint: https://liveapi.yext.com/v2/accounts/{accountId}/locations/{locationId} # :path_regex: https://liveapi.yext.com/v2/accounts/[^/]+?/locations/[^/]+?? # :default_version: 20161012 # :documentation: http://developer.yext.com/docs/live-api/#operation/getLocation # :sandbox_only: false class Location < Yext::Api::Utils::ApiBase include Yext::Api::Concerns::AccountChild live_api end end end end
Version data entries
8 entries across 8 versions & 1 rubygems