Sha256: b4f604e87ff5b406ba64508c139bc00162069505f34bf9afdab4f1f168554f26
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 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 # :comment: > # Get multiple Locations (primary profile only). Filters are evaluated against all language # profiles as well as the primary profile. # :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 # :comment: Gets the primary profile for a single Location. # :sandbox_only: false class Location < Yext::Api::Utils::ApiBase include Yext::Api::Concerns::AccountChild live_api end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
yext-api-0.1.1 | lib/yext/api/live_api/location.rb |