Module: AmznSpApi::FbaInboundEligibilityApiModel
- Defined in:
- lib/fba_inbound_eligibility_api_model/version.rb,
lib/fba_inbound_eligibility_api_model.rb,
lib/fba_inbound_eligibility_api_model/api_error.rb,
lib/fba_inbound_eligibility_api_model/api_client.rb,
lib/fba_inbound_eligibility_api_model/models/error.rb,
lib/fba_inbound_eligibility_api_model/configuration.rb,
lib/fba_inbound_eligibility_api_model/models/error_list.rb,
lib/fba_inbound_eligibility_api_model/api/fba_inbound_api.rb,
lib/fba_inbound_eligibility_api_model/models/item_eligibility_preview.rb,
lib/fba_inbound_eligibility_api_model/models/get_item_eligibility_preview_response.rb
Overview
#Selling Partner API for FBA Inbound Eligibilty
With the FBA Inbound Eligibility API, you can build applications that let sellers get eligibility previews for items before shipping them to Amazon’s fulfillment centers. With this API you can find out if an item is eligible for inbound shipment to Amazon’s fulfillment centers in a specific marketplace. You can also find out if an item is eligible for using the manufacturer barcode for FBA inventory tracking. Sellers can use this information to inform their decisions about which items to ship Amazon’s fulfillment centers.
OpenAPI spec version: v1
Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 3.0.36
Defined Under Namespace
Classes: ApiClient, ApiError, Configuration, Error, ErrorList, FbaInboundApi, GetItemEligibilityPreviewResponse, ItemEligibilityPreview
Constant Summary collapse
- VERSION =
'1.0.0'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
AmznSpApi::FbaInboundEligibilityApiModel.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
33 34 35 36 37 38 39 |
# File 'lib/fba_inbound_eligibility_api_model.rb', line 33 def configure if block_given? yield(Configuration.default) else Configuration.default end end |