Sha256: 63f32e0e70174f21d4eb75f03c1c1ea3ef7550e78da9be7afd9d8bbdee3add74
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
# frozen_string_literal: true # TODO: Complete and test. Untested initial framework class. module Yext module Api module AdministrativeApi # :administrative_api: # :add_request: # :actions: # - :action: :index # :method: :get # :endpoint: https://api.yext.com/v2/accounts/{accountId}/addrequests # :path_regex: v2/accounts/[^/]+?/addrequests # :default_version: 20161012 # :documentation: http://developer.yext.com/docs/administrative-api/#operation/listAddRequests # :comment: Get all of the add requests in the account. The response includes both New Location # Add Requests and Existing Location Add Requests. # :sandbox_only: false # - :action: :show # :method: :get # :endpoint: https://api.yext.com/v2/accounts/{accountId}/addrequests/{addRequestId} # :path_regex: v2/accounts/[^/]+?/addrequests/[^/]+?? # :default_version: 20161012 # :documentation: http://developer.yext.com/docs/administrative-api/#operation/getAddRequest # :comment: Get status information about an add request previously created. # :sandbox_only: false class AddRequest < Yext::Api::Utils::ApiBase uri("addrequests/(:id)") include Yext::Api::Concerns::AccountChild end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
yext-api-0.1.1 | lib/yext/api/administrative_api/add_request.rb |