peddler 4.1.1 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7677959689b208211817ca535b18ec25d495df736d1e502e8b758cdb2c826603
4
- data.tar.gz: c4c4f26d97ab8bcbb18e2ee0bbac890e7e2284b475a0d19286ea1c15e456b942
3
+ metadata.gz: f24fcbe5356adc88b3eff33d9f5ca86631c96c4c3187c189594b5771034f111c
4
+ data.tar.gz: d605c37bade2f932f1661a8351db41e2e77f4c6684796e583dbf28939d08489e
5
5
  SHA512:
6
- metadata.gz: cc020ae6bda468c2d82044b8a7b226f6101ea141b63d3cd8731ae1c58507b93f11c9e8e18040cb8a31ff0c8dcef40617bdc080f76346f029ddab1b35076027e3
7
- data.tar.gz: 9e8d25fbdfe70c203331fa4ffda8147000b59e66b0ec0658b99d17a25342e975706d9366d6b7c2d6d9314593cfc6a4fbd7e4bc50b4ff5613aaf452337b7b1061
6
+ metadata.gz: bd19ca60dfbbfefdf17ef1152dc4ab5906265e1266ad66a13fc4bcf3cb4190a1b34b5b6b1908c1ed093ff5fa702c31e0275c7d00d24a1c39c5ea696abd2a6887
7
+ data.tar.gz: 61f4b5e4238fd997cf7e2606caf39138b8dcda336aa63c6685ef3d67ee41d9c64357577e0831961ef40a7974d6d9e1c567093d5ea2b1884489e3e5835aaaebb7
data/README.md CHANGED
@@ -4,8 +4,6 @@
4
4
  [![Maintainability](https://api.codeclimate.com/v1/badges/281e6176048f3c0a1ed3/maintainability)][maintainability]
5
5
  [![Test Coverage](https://api.codeclimate.com/v1/badges/281e6176048f3c0a1ed3/test_coverage)][test-coverage]
6
6
 
7
- > **_NOTE:_** This README explains the main branch, which may contain unreleased code. For the README of the latest release, please refer to [this link][latest-release-readme].
8
-
9
7
  **Peddler** is a Ruby interface to the [Amazon Selling Partner API (SP-API)][docs-overview]. The SP-API enables Amazon sellers and vendors to programmatically access their data on orders, shipments, payments, and more.
10
8
 
11
9
  Peddler is automatically generated from the Open API models provided by Amazon.
@@ -515,7 +513,6 @@ response.parse
515
513
  [build]: https://github.com/hakanensari/peddler/actions
516
514
  [maintainability]: https://codeclimate.com/github/hakanensari/peddler/maintainability
517
515
  [test-coverage]: https://codeclimate.com/github/hakanensari/peddler/test_coverage
518
- [latest-release-readme]: https://github.com/lineofflight/peddler/tree/v3.0.0
519
516
  [docs-overview]: https://developer.amazonservices.com/sp-api-docs/overview
520
517
  [register-as-developer]: https://developer-docs.amazon.com/sp-api/docs/registering-as-a-developer
521
518
  [register-application]: https://developer-docs.amazon.com/sp-api/docs/registering-your-application
data/lib/peddler/api.rb CHANGED
@@ -30,8 +30,9 @@ module Peddler
30
30
  # @return [Integer]
31
31
  attr_reader :retries
32
32
 
33
- # @param [String] aws_region
34
- # @param [String] access_token
33
+ # @param [String] aws_region The AWS region to use for the endpoint
34
+ # @param [String] access_token The access token for authentication
35
+ # @param [Integer] retries The number of retries if throttled (default: 0)
35
36
  def initialize(aws_region, access_token, retries: 0)
36
37
  @endpoint = Endpoint.find(aws_region)
37
38
  @access_token = access_token
@@ -15,6 +15,69 @@ module Peddler
15
15
  # The Selling Partner API for Amazon Warehousing and Distribution (AWD) provides programmatic access to information
16
16
  # about AWD shipments and inventory.
17
17
  class AmazonWarehousingAndDistribution20240509 < API
18
+ # Creates a draft AWD inbound order with a list of packages for inbound shipment. The operation creates one
19
+ # shipment per order.
20
+ #
21
+ # @note This operation can make a static sandbox call.
22
+ # @param body [Hash] Payload for creating an inbound order.
23
+ # @param rate_limit [Float] Requests per second
24
+ # @return [Peddler::Response] The API response
25
+ def create_inbound(body, rate_limit: 1.0)
26
+ path = "/awd/2024-05-09/inboundOrders"
27
+
28
+ meter(rate_limit).post(path, body:)
29
+ end
30
+
31
+ # Retrieves an AWD inbound order.
32
+ #
33
+ # @note This operation can make a static sandbox call.
34
+ # @param order_id [String] The ID of the inbound order that you want to retrieve.
35
+ # @param rate_limit [Float] Requests per second
36
+ # @return [Peddler::Response] The API response
37
+ def get_inbound(order_id, rate_limit: 2.0)
38
+ path = "/awd/2024-05-09/inboundOrders/#{order_id}"
39
+
40
+ meter(rate_limit).get(path)
41
+ end
42
+
43
+ # Updates an AWD inbound order that is in `DRAFT` status and not yet confirmed. Use this operation to update the
44
+ # `packagesToInbound`, `originAddress` and `preferences` attributes.
45
+ #
46
+ # @note This operation can make a static sandbox call.
47
+ # @param order_id [String] The ID of the inbound order that you want to update.
48
+ # @param body [Hash] Represents an AWD inbound order.
49
+ # @param rate_limit [Float] Requests per second
50
+ # @return [Peddler::Response] The API response
51
+ def update_inbound(order_id, body, rate_limit: 1.0)
52
+ path = "/awd/2024-05-09/inboundOrders/#{order_id}"
53
+
54
+ meter(rate_limit).put(path, body:)
55
+ end
56
+
57
+ # Cancels an AWD Inbound order and its associated shipment.
58
+ #
59
+ # @note This operation can make a static sandbox call.
60
+ # @param order_id [String] The ID of the inbound order you want to cancel.
61
+ # @param rate_limit [Float] Requests per second
62
+ # @return [Peddler::Response] The API response
63
+ def cancel_inbound(order_id, rate_limit: 1.0)
64
+ path = "/awd/2024-05-09/inboundOrders/#{order_id}/cancellation"
65
+
66
+ meter(rate_limit).post(path)
67
+ end
68
+
69
+ # Confirms an AWD inbound order in `DRAFT` status.
70
+ #
71
+ # @note This operation can make a static sandbox call.
72
+ # @param order_id [String] The ID of the inbound order that you want to confirm.
73
+ # @param rate_limit [Float] Requests per second
74
+ # @return [Peddler::Response] The API response
75
+ def confirm_inbound(order_id, rate_limit: 1.0)
76
+ path = "/awd/2024-05-09/inboundOrders/#{order_id}/confirmation"
77
+
78
+ meter(rate_limit).post(path)
79
+ end
80
+
18
81
  # Retrieves an AWD inbound shipment.
19
82
  #
20
83
  # @note This operation can make a static sandbox call.
@@ -32,6 +95,52 @@ module Peddler
32
95
  meter(rate_limit).get(path, params:)
33
96
  end
34
97
 
98
+ # Retrieves the box labels for a shipment ID that you specify. This is an asynchronous operation. If the label
99
+ # status is `GENERATED`, then the label URL is available.
100
+ #
101
+ # @note This operation can make a static sandbox call.
102
+ # @param shipment_id [String] ID for the shipment.
103
+ # @param page_type [String] Page type for the generated labels. The default is `PLAIN_PAPER`.
104
+ # @param format_type [String] The format type of the output file that contains your labels. The default format
105
+ # type is `PDF`.
106
+ # @param rate_limit [Float] Requests per second
107
+ # @return [Peddler::Response] The API response
108
+ def get_inbound_shipment_labels(shipment_id, page_type: nil, format_type: nil, rate_limit: 1.0)
109
+ path = "/awd/2024-05-09/inboundShipments/#{shipment_id}/labels"
110
+ params = {
111
+ "pageType" => page_type,
112
+ "formatType" => format_type,
113
+ }.compact
114
+
115
+ meter(rate_limit).get(path, params:)
116
+ end
117
+
118
+ # Updates transport details for an AWD shipment.
119
+ #
120
+ # @note This operation can make a static sandbox call.
121
+ # @param shipment_id [String] The shipment ID.
122
+ # @param body [Hash] Transportation details for the shipment.
123
+ # @param rate_limit [Float] Requests per second
124
+ # @return [Peddler::Response] The API response
125
+ def update_inbound_shipment_transport_details(shipment_id, body, rate_limit: 1.0)
126
+ path = "/awd/2024-05-09/inboundShipments/#{shipment_id}/transport"
127
+
128
+ meter(rate_limit).put(path, body:)
129
+ end
130
+
131
+ # Determines if the packages you specify are eligible for an AWD inbound order and contains error details for
132
+ # ineligible packages.
133
+ #
134
+ # @note This operation can make a static sandbox call.
135
+ # @param body [Hash] Represents the packages you want to inbound.
136
+ # @param rate_limit [Float] Requests per second
137
+ # @return [Peddler::Response] The API response
138
+ def check_inbound_eligibility(body, rate_limit: 1.0)
139
+ path = "/awd/2024-05-09/inboundEligibility"
140
+
141
+ meter(rate_limit).post(path, body:)
142
+ end
143
+
35
144
  # Retrieves a summary of all the inbound AWD shipments associated with a merchant, with the ability to apply
36
145
  # optional filters.
37
146
  #
@@ -45,7 +154,11 @@ module Peddler
45
154
  # @param updated_before [String] List the inbound shipments that were updated before a certain time (inclusive).
46
155
  # The date must be in {https://developer-docs.amazon.com/sp-api/docs/iso-8601 ISO 8601} format.
47
156
  # @param max_results [Integer] Maximum number of results to return.
48
- # @param next_token [String] Token to retrieve the next set of paginated results.
157
+ # @param next_token [String] A token that is used to retrieve the next page of results. The response includes
158
+ # `nextToken` when the number of results exceeds the specified `maxResults` value. To get the next page of
159
+ # results, call the operation with this token and include the same arguments as the call that produced the
160
+ # token. To get a complete list, call this operation until `nextToken` is null. Note that this operation can
161
+ # return empty pages.
49
162
  # @param rate_limit [Float] Requests per second
50
163
  # @return [Peddler::Response] The API response
51
164
  def list_inbound_shipments(sort_by: nil, sort_order: nil, shipment_status: nil, updated_after: nil,
@@ -71,7 +184,11 @@ module Peddler
71
184
  # @param sort_order [String] Sort the response in `ASCENDING` or `DESCENDING` order.
72
185
  # @param details [String] Set to `SHOW` to return summaries with additional inventory details. Defaults to `HIDE,`
73
186
  # which returns only inventory summary totals.
74
- # @param next_token [String] Token to retrieve the next set of paginated results.
187
+ # @param next_token [String] A token that is used to retrieve the next page of results. The response includes
188
+ # `nextToken` when the number of results exceeds the specified `maxResults` value. To get the next page of
189
+ # results, call the operation with this token and include the same arguments as the call that produced the
190
+ # token. To get a complete list, call this operation until `nextToken` is null. Note that this operation can
191
+ # return empty pages.
75
192
  # @param max_results [Integer] Maximum number of results to return.
76
193
  # @param rate_limit [Float] Requests per second
77
194
  # @return [Peddler::Response] The API response
@@ -12,21 +12,18 @@ module Peddler
12
12
  module APIs
13
13
  # Selling Partner API for A+ Content Management
14
14
  #
15
- # With the A+ Content API, you can build applications that help selling partners add rich marketing content to their
16
- # Amazon product detail pages. A+ content helps selling partners share their brand and product story, which helps
17
- # buyers make informed purchasing decisions. Selling partners assemble content by choosing from content modules and
18
- # adding images and text.
15
+ # Use the A+ Content API to build applications that help selling partners add rich marketing content to their Amazon
16
+ # product detail pages. Selling partners can use A+ content to share their brand and product story, which helps
17
+ # buyers make informed purchasing decisions. Selling partners use content modules to add images and text.
19
18
  class AplusContent20201101 < API
20
- # Returns a list of all A+ Content documents assigned to a selling partner. This operation returns only the
21
- # metadata of the A+ Content documents. Call the getContentDocument operation to get the actual contents of the A+
22
- # Content documents.
19
+ # Returns a list of all A+ Content documents, including metadata, that are assigned to a selling partner. To get
20
+ # the actual contents of the A+ Content documents, call the `getContentDocument` operation.
23
21
  #
24
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
25
- # @param page_token [String] A page token from the nextPageToken response element returned by your previous call
26
- # to this operation. nextPageToken is returned when the results of a call exceed the page size. To get the next
27
- # page of results, call the operation and include pageToken as the only parameter. Specifying pageToken with any
28
- # other parameter will cause the request to fail. When no nextPageToken value is returned there are no more
29
- # pages to return. A pageToken value is not usable across different operations.
22
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
23
+ # the ID for your marketplace, refer to [Marketplace
24
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
25
+ # @param page_token [String] A token that you use to fetch a specific page when there are multiple pages of
26
+ # results.
30
27
  # @param rate_limit [Float] Requests per second
31
28
  # @return [Peddler::Response] The API response
32
29
  def search_content_documents(marketplace_id, page_token: nil, rate_limit: 10.0)
@@ -43,7 +40,9 @@ module Peddler
43
40
 
44
41
  # Creates a new A+ Content document.
45
42
  #
46
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
43
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
44
+ # the ID for your marketplace, refer to [Marketplace
45
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
47
46
  # @param post_content_document_request [Hash] The content document request details.
48
47
  # @param rate_limit [Float] Requests per second
49
48
  # @return [Peddler::Response] The API response
@@ -62,9 +61,11 @@ module Peddler
62
61
  # Returns an A+ Content document, if available.
63
62
  #
64
63
  # @param content_reference_key [String] The unique reference key for the A+ Content document. A content reference
65
- # key cannot form a permalink and may change in the future. A content reference key is not guaranteed to match
64
+ # key cannot form a permalink and might change in the future. A content reference key is not guaranteed to match
66
65
  # any A+ Content identifier.
67
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
66
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
67
+ # the ID for your marketplace, refer to [Marketplace
68
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
68
69
  # @param included_data_set [Array<String>] The set of A+ Content data types to include in the response.
69
70
  # @param rate_limit [Float] Requests per second
70
71
  # @return [Peddler::Response] The API response
@@ -83,9 +84,11 @@ module Peddler
83
84
  # Updates an existing A+ Content document.
84
85
  #
85
86
  # @param content_reference_key [String] The unique reference key for the A+ Content document. A content reference
86
- # key cannot form a permalink and may change in the future. A content reference key is not guaranteed to match
87
+ # key cannot form a permalink and might change in the future. A content reference key is not guaranteed to match
87
88
  # any A+ Content identifier.
88
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
89
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
90
+ # the ID for your marketplace, refer to [Marketplace
91
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
89
92
  # @param post_content_document_request [Hash] The content document request details.
90
93
  # @param rate_limit [Float] Requests per second
91
94
  # @return [Peddler::Response] The API response
@@ -102,21 +105,20 @@ module Peddler
102
105
  meter(rate_limit).post(path, body:, params:)
103
106
  end
104
107
 
105
- # Returns a list of ASINs related to the specified A+ Content document, if available. If you do not include the
106
- # asinSet parameter, the operation returns all ASINs related to the content document.
108
+ # Returns a list of ASINs that are related to the specified A+ Content document, if available. If you don't
109
+ # include the `asinSet` parameter, this operation returns all ASINs related to the content document.
107
110
  #
108
111
  # @param content_reference_key [String] The unique reference key for the A+ Content document. A content reference
109
- # key cannot form a permalink and may change in the future. A content reference key is not guaranteed to match
112
+ # key cannot form a permalink and might change in the future. A content reference key is not guaranteed to match
110
113
  # any A+ Content identifier.
111
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
112
- # @param included_data_set [Array<String>] The set of A+ Content data types to include in the response. If you do
113
- # not include this parameter, the operation returns the related ASINs without metadata.
114
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
115
+ # the ID for your marketplace, refer to [Marketplace
116
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
117
+ # @param included_data_set [Array<String>] The set of A+ Content data types to include in the response. If you
118
+ # don't include this parameter, the operation returns the related ASINs without metadata.
114
119
  # @param asin_set [Array<String>] The set of ASINs.
115
- # @param page_token [String] A page token from the nextPageToken response element returned by your previous call
116
- # to this operation. nextPageToken is returned when the results of a call exceed the page size. To get the next
117
- # page of results, call the operation and include pageToken as the only parameter. Specifying pageToken with any
118
- # other parameter will cause the request to fail. When no nextPageToken value is returned there are no more
119
- # pages to return. A pageToken value is not usable across different operations.
120
+ # @param page_token [String] A token that you use to fetch a specific page when there are multiple pages of
121
+ # results.
120
122
  # @param rate_limit [Float] Requests per second
121
123
  # @return [Peddler::Response] The API response
122
124
  def list_content_document_asin_relations(content_reference_key, marketplace_id, included_data_set: nil,
@@ -134,15 +136,18 @@ module Peddler
134
136
  meter(rate_limit).get(path, params:)
135
137
  end
136
138
 
137
- # Replaces all ASINs related to the specified A+ Content document, if available. This may add or remove ASINs,
138
- # depending on the current set of related ASINs. Removing an ASIN has the side effect of suspending the content
139
- # document from that ASIN.
139
+ # Replaces all ASINs related to the specified A+ Content document, if available. This operation can add or remove
140
+ # ASINs, depending on the current set of related ASINs. Removing an ASIN will suspend the content document from
141
+ # that ASIN.
140
142
  #
141
143
  # @param content_reference_key [String] The unique reference key for the A+ Content document. A content reference
142
- # key cannot form a permalink and may change in the future. A content reference key is not guaranteed to match
144
+ # key cannot form a permalink and might change in the future. A content reference key is not guaranteed to match
143
145
  # any A+ content identifier.
144
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
145
- # @param post_content_document_asin_relations_request [Hash] The content document ASIN relations request details.
146
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
147
+ # the ID for your marketplace, refer to [Marketplace
148
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
149
+ # @param post_content_document_asin_relations_request [Hash] The request details for the content document ASIN
150
+ # relations.
146
151
  # @param rate_limit [Float] Requests per second
147
152
  # @return [Peddler::Response] The API response
148
153
  def post_content_document_asin_relations(content_reference_key, marketplace_id,
@@ -160,7 +165,9 @@ module Peddler
160
165
 
161
166
  # Checks if the A+ Content document is valid for use on a set of ASINs.
162
167
  #
163
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
168
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
169
+ # the ID for your marketplace, refer to [Marketplace
170
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
164
171
  # @param asin_set [Array<String>] The set of ASINs.
165
172
  # @param post_content_document_request [Hash] The content document request details.
166
173
  # @param rate_limit [Float] Requests per second
@@ -181,13 +188,13 @@ module Peddler
181
188
 
182
189
  # Searches for A+ Content publishing records, if available.
183
190
  #
184
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
185
- # @param asin [String] The Amazon Standard Identification Number (ASIN).
186
- # @param page_token [String] A page token from the nextPageToken response element returned by your previous call
187
- # to this operation. nextPageToken is returned when the results of a call exceed the page size. To get the next
188
- # page of results, call the operation and include pageToken as the only parameter. Specifying pageToken with any
189
- # other parameter will cause the request to fail. When no nextPageToken value is returned there are no more
190
- # pages to return. A pageToken value is not usable across different operations.
191
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
192
+ # the ID for your marketplace, refer to [Marketplace
193
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
194
+ # @param asin [String] The Amazon Standard Identification Number (ASIN) is the unique identifier of a product
195
+ # within a marketplace.
196
+ # @param page_token [String] A token that you use to fetch a specific page when there are multiple pages of
197
+ # results.
191
198
  # @param rate_limit [Float] Requests per second
192
199
  # @return [Peddler::Response] The API response
193
200
  def search_content_publish_records(marketplace_id, asin, page_token: nil, rate_limit: 10.0)
@@ -206,9 +213,11 @@ module Peddler
206
213
  # Submits an A+ Content document for review, approval, and publishing.
207
214
  #
208
215
  # @param content_reference_key [String] The unique reference key for the A+ Content document. A content reference
209
- # key cannot form a permalink and may change in the future. A content reference key is not guaranteed to match
216
+ # key cannot form a permalink and might change in the future. A content reference key is not guaranteed to match
210
217
  # any A+ content identifier.
211
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
218
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
219
+ # the ID for your marketplace, refer to [Marketplace
220
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
212
221
  # @param rate_limit [Float] Requests per second
213
222
  # @return [Peddler::Response] The API response
214
223
  def post_content_document_approval_submission(content_reference_key, marketplace_id, rate_limit: 10.0)
@@ -222,13 +231,14 @@ module Peddler
222
231
  meter(rate_limit).post(path, params:)
223
232
  end
224
233
 
225
- # Submits a request to suspend visible A+ Content. This neither deletes the content document nor the ASIN
226
- # relations.
234
+ # Submits a request to suspend visible A+ Content. This doesn't delete the content document or the ASIN relations.
227
235
  #
228
236
  # @param content_reference_key [String] The unique reference key for the A+ Content document. A content reference
229
- # key cannot form a permalink and may change in the future. A content reference key is not guaranteed to match
237
+ # key cannot form a permalink and might change in the future. A content reference key is not guaranteed to match
230
238
  # any A+ content identifier.
231
- # @param marketplace_id [String] The identifier for the marketplace where the A+ Content is published.
239
+ # @param marketplace_id [String] The marketplace ID is the globally unique identifier of a marketplace. To find
240
+ # the ID for your marketplace, refer to [Marketplace
241
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
232
242
  # @param rate_limit [Float] Requests per second
233
243
  # @return [Peddler::Response] The API response
234
244
  def post_content_document_suspend_submission(content_reference_key, marketplace_id, rate_limit: 10.0)
@@ -10,43 +10,44 @@ module Peddler
10
10
  end
11
11
 
12
12
  module APIs
13
- # Catalog Items v2022-04-01
13
+ # Selling Partner API for Catalog Items
14
14
  #
15
- # The Selling Partner API for Catalog Items provides programmatic access to information about items in the Amazon
16
- # catalog. For more information, refer to the
17
- # {https://developer-docs.amazon.com/sp-api/docs/catalog-items-api-v2022-04-01-use-case-guide Catalog Items API Use
18
- # Case Guide}.
15
+ # Use the Selling Partner API for Catalog Items to retrieve information about items in the Amazon catalog. For more
16
+ # information, refer to the [Catalog Items API Use Case
17
+ # Guide](https://developer-docs.amazon.com/sp-api/docs/:catalog-items-api-v2022-04-01-use-case-guide).
19
18
  class CatalogItems20220401 < API
20
- # Search for and return a list of Amazon catalog items and associated information either by identifier or by
19
+ # Search for a list of Amazon catalog items and item-related information. You can search by identifier or by
21
20
  # keywords.
22
21
  #
23
22
  # @note This operation can make a static sandbox call.
24
- # @param identifiers [Array<String>] A comma-delimited list of product identifiers to search the Amazon catalog
25
- # for. **Note:** Cannot be used with `keywords`.
26
- # @param identifiers_type [String] Type of product identifiers to search the Amazon catalog for. **Note:**
27
- # Required when `identifiers` are provided.
28
- # @param marketplace_ids [Array<String>] A comma-delimited list of Amazon marketplace identifiers for the request.
29
- # @param included_data [Array<String>] A comma-delimited list of data sets to include in the response. Default:
30
- # `summaries`.
31
- # @param locale [String] Locale for retrieving localized summaries. Defaults to the primary locale of the
32
- # marketplace.
23
+ # @param identifiers [Array<String>] A comma-delimited list of product identifiers that you can use to search the
24
+ # Amazon catalog. **Note:** You cannot include `identifiers` and `keywords` in the same request.
25
+ # @param identifiers_type [String] The type of product identifiers that you can use to search the Amazon catalog.
26
+ # **Note:** `identifiersType` is required when `identifiers` is in the request.
27
+ # @param marketplace_ids [Array<String>] A comma-delimited list of Amazon marketplace identifiers. To find the ID
28
+ # for your marketplace, refer to [Marketplace
29
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
30
+ # @param included_data [Array<String>] A comma-delimited list of datasets to include in the response.
31
+ # @param locale [String] The locale for which you want to retrieve localized summaries. Defaults to the primary
32
+ # locale of the marketplace.
33
33
  # @param seller_id [String] A selling partner identifier, such as a seller account or vendor code. **Note:**
34
34
  # Required when `identifiersType` is `SKU`.
35
- # @param keywords [Array<String>] A comma-delimited list of words to search the Amazon catalog for. **Note:**
36
- # Cannot be used with `identifiers`.
37
- # @param brand_names [Array<String>] A comma-delimited list of brand names to limit the search for
38
- # `keywords`-based queries. **Note:** Cannot be used with `identifiers`.
39
- # @param classification_ids [Array<String>] A comma-delimited list of classification identifiers to limit the
40
- # search for `keywords`-based queries. **Note:** Cannot be used with `identifiers`.
41
- # @param page_size [Integer] Number of results to be returned per page.
42
- # @param page_token [String] A token to fetch a certain page when there are multiple pages worth of results.
43
- # @param keywords_locale [String] The language of the keywords provided for `keywords`-based queries. Defaults to
44
- # the primary locale of the marketplace. **Note:** Cannot be used with `identifiers`.
35
+ # @param keywords [Array<String>] A comma-delimited list of keywords that you can use to search the Amazon
36
+ # catalog. **Note:** You cannot include `keywords` and `identifiers` in the same request.
37
+ # @param brand_names [Array<String>] A comma-delimited list of brand names that you can use to limit the search in
38
+ # queries based on `keywords`. **Note:** Cannot be used with `identifiers`.
39
+ # @param classification_ids [Array<String>] A comma-delimited list of classification identifiers that you can use
40
+ # to limit the search in queries based on `keywords`. **Note:** Cannot be used with `identifiers`.
41
+ # @param page_size [Integer] The number of results to include on each page.
42
+ # @param page_token [String] A token that you can use to fetch a specific page when there are multiple pages of
43
+ # results.
44
+ # @param keywords_locale [String] The language of the keywords that are included in queries based on `keywords`.
45
+ # Defaults to the primary locale of the marketplace. **Note:** Cannot be used with `identifiers`.
45
46
  # @param rate_limit [Float] Requests per second
46
47
  # @return [Peddler::Response] The API response
47
48
  def search_catalog_items(marketplace_ids, identifiers: nil, identifiers_type: nil, included_data: ["summaries"],
48
49
  locale: nil, seller_id: nil, keywords: nil, brand_names: nil, classification_ids: nil, page_size: 10,
49
- page_token: nil, keywords_locale: nil, rate_limit: 2.0)
50
+ page_token: nil, keywords_locale: nil, rate_limit: 5.0)
50
51
  path = "/catalog/2022-04-01/items"
51
52
  params = {
52
53
  "identifiers" => identifiers,
@@ -70,15 +71,15 @@ module Peddler
70
71
  #
71
72
  # @note This operation can make a static sandbox call.
72
73
  # @param asin [String] The Amazon Standard Identification Number (ASIN) of the item.
73
- # @param marketplace_ids [Array<String>] A comma-delimited list of Amazon marketplace identifiers. Data sets in
74
- # the response contain data only for the specified marketplaces.
75
- # @param included_data [Array<String>] A comma-delimited list of data sets to include in the response. Default:
76
- # `summaries`.
77
- # @param locale [String] Locale for retrieving localized summaries. Defaults to the primary locale of the
78
- # marketplace.
74
+ # @param marketplace_ids [Array<String>] A comma-delimited list of Amazon marketplace identifiers. To find the ID
75
+ # for your marketplace, refer to [Marketplace
76
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
77
+ # @param included_data [Array<String>] A comma-delimited list of datasets to include in the response.
78
+ # @param locale [String] The locale for which you want to retrieve localized summaries. Defaults to the primary
79
+ # locale of the marketplace.
79
80
  # @param rate_limit [Float] Requests per second
80
81
  # @return [Peddler::Response] The API response
81
- def get_catalog_item(asin, marketplace_ids, included_data: ["summaries"], locale: nil, rate_limit: 2.0)
82
+ def get_catalog_item(asin, marketplace_ids, included_data: ["summaries"], locale: nil, rate_limit: 5.0)
82
83
  path = "/catalog/2022-04-01/items/#{asin}"
83
84
  params = {
84
85
  "marketplaceIds" => marketplace_ids,
@@ -12,11 +12,11 @@ module Peddler
12
12
  module APIs
13
13
  # Selling Partner API for Easy Ship
14
14
  #
15
- # The Selling Partner API for Easy Ship helps you build applications that help sellers manage and ship Amazon Easy
16
- # Ship orders. Your Easy Ship applications can: * Get available time slots for packages to be scheduled for
17
- # delivery. * Schedule, reschedule, and cancel Easy Ship orders. * Print labels, invoices, and warranties. See the
18
- # {https://developer-docs.amazon.com/sp-api/docs/easyship-api-v2022-03-23-use-case-guide#marketplace-support-table
19
- # Marketplace Support Table} for the differences in Easy Ship operations by marketplace.
15
+ # Use the Selling Partner API for Easy Ship to build applications for sellers to manage and ship Amazon Easy Ship
16
+ # orders. With this API, you can get available time slots, schedule and reschedule Easy Ship orders, and print
17
+ # shipping labels, invoices, and warranties. To review the differences in Easy Ship operations by marketplace, refer
18
+ # to [Marketplace
19
+ # support](https://developer-docs.amazon.com/sp-api/docs/easyship-api-v2022-03-23-use-case-guide#marketplace-support).
20
20
  class EasyShip20220323 < API
21
21
  # Returns time slots available for Easy Ship orders to be scheduled based on the package weight and dimensions
22
22
  # that the seller specifies. This operation is available for scheduled and unscheduled orders based on marketplace
@@ -96,19 +96,20 @@ module Peddler
96
96
  meter(rate_limit).patch(path, body:)
97
97
  end
98
98
 
99
- # This operation automatically schedules a time slot for all specified `amazonOrderId` values and generates the
100
- # associated shipping labels and compliance documents based on the marketplace. For more information, refer to the
101
- # [marketplace support
102
- # table](https://developer-docs.amazon.com/sp-api/docs/easyship-api-v2022-03-23-use-case-guide#marketplace-support-table).
103
- # You can optionally assign a `packageDetails` object to input a preferred time slot for each order in your
104
- # request. In such cases, Amazon schedules the respective packages using the specified optional settings. If you
105
- # don't specify a time slot, Amazon assigns the earliest available time slot. You can choose PDF or ZPL for your
106
- # shipping label's file format and Amazon creates the label accordingly. This operation returns an array that
107
- # contains the scheduled packages, and a temporary URL that you can use to access a ZIP file. The ZIP file
108
- # includes the generated shipping labels and any other documents that are required for your marketplace. If an
109
- # order can't be scheduled, Amazon adds the `rejectedOrders` list in the response. The response contains an entry
110
- # for each order that could not be processed. Each entry contains an error message that describes the reason for
111
- # the failure. The following table contains the supported request and burst maximum rates:
99
+ # This operation automatically schedules a time slot for all the `amazonOrderId`s given as input, generating the
100
+ # associated shipping labels, along with other compliance documents according to the marketplace (refer to the
101
+ # {https://developer-docs.amazon.com/sp-api/docs/easyship-api-v2022-03-23-use-case-guide#marketplace-support-table
102
+ # marketplace document support table}). Developers calling this operation may optionally assign a `packageDetails`
103
+ # object, allowing them to input a preferred time slot for each order in their request. In this case, Amazon will
104
+ # try to schedule the respective packages using their optional settings. On the other hand, *i.e.*, if the time
105
+ # slot is not provided, Amazon will then pick the earliest time slot possible. Regarding the shipping label's file
106
+ # format, external developers are able to choose between PDF or ZPL, and Amazon will create the label accordingly.
107
+ # This operation returns an array composed of the scheduled packages, and a short-lived URL pointing to a zip file
108
+ # containing the generated shipping labels and the other documents enabled for your marketplace. If at least an
109
+ # order couldn't be scheduled, then Amazon adds the `rejectedOrders` list into the response, which contains an
110
+ # entry for each order we couldn't process. Each entry is composed of an error message describing the reason of
111
+ # the failure, so that sellers can take action. The table below displays the supported request and burst maximum
112
+ # rates:
112
113
  #
113
114
  # @note This operation can make a static sandbox call.
114
115
  # @param create_scheduled_packages_request [Hash] The request schema for the `createScheduledPackageBulk`
@@ -11,7 +11,7 @@ module Peddler
11
11
  end
12
12
 
13
13
  module APIs
14
- # Feeds v2021-06-30
14
+ # Selling Partner API for Feeds
15
15
  #
16
16
  # The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
17
17
  class Feeds20210630 < API
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "peddler/api"
4
+
5
+ module Peddler
6
+ class << self
7
+ def finances_2024_06_01(...)
8
+ APIs::Finances20240601.new(...)
9
+ end
10
+ end
11
+
12
+ module APIs
13
+ # The Selling Partner API for Transfers.
14
+ #
15
+ # The Selling Partner API for Transfers enables selling partners to retrieve payment methods and initiate payouts
16
+ # for their seller accounts. This API supports the following marketplaces: DE, FR, IT, ES, SE, NL, PL, and BE.
17
+ class Finances20240601 < API
18
+ # Initiates an on-demand payout to the seller's default deposit method in Seller Central for the given
19
+ # `marketplaceId` and `accountType`, if eligible. You can only initiate one on-demand payout for each marketplace
20
+ # and account type within a 24-hour period.
21
+ #
22
+ # @note This operation can make a static sandbox call.
23
+ # @param body [Hash] The request body for the `initiatePayout` operation.
24
+ # @param rate_limit [Float] Requests per second
25
+ # @return [Peddler::Response] The API response
26
+ def initiate_payout(body, rate_limit: 0.017)
27
+ path = "/finances/transfers/2024-06-01/payouts"
28
+
29
+ meter(rate_limit).post(path, body:)
30
+ end
31
+
32
+ # Returns the list of payment methods for the seller, which can be filtered by method type.
33
+ #
34
+ # @note This operation can make a static sandbox call.
35
+ # @param marketplace_id [String] The identifier of the marketplace from which you want to retrieve payment
36
+ # methods. For the list of possible marketplace identifiers, refer to [Marketplace
37
+ # IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
38
+ # @param payment_method_types [Array<String>] A comma-separated list of the payment method types you want to
39
+ # include in the response.
40
+ # @param rate_limit [Float] Requests per second
41
+ # @return [Peddler::Response] The API response
42
+ def get_payment_methods(marketplace_id, payment_method_types: nil, rate_limit: 0.5)
43
+ path = "/finances/transfers/2024-06-01/paymentMethods"
44
+ params = {
45
+ "marketplaceId" => marketplace_id,
46
+ "paymentMethodTypes" => payment_method_types,
47
+ }.compact
48
+
49
+ meter(rate_limit).get(path, params:)
50
+ end
51
+ end
52
+ end
53
+ end