AmzSpApi::FeedsApiModel::FeedsApi

All URIs are relative to https://sellingpartnerapi-na.amazon.com/

Method | HTTP request | Description ————- | ————- | ————- {cancel_feed} | DELETE /feeds/2020-09-04/feeds/{feedId} | {create_feed} | POST /feeds/2020-09-04/feeds | {create_feed_document} | POST /feeds/2020-09-04/documents | {get_feed} | GET /feeds/2020-09-04/feeds/{feedId} | {get_feed_document} | GET /feeds/2020-09-04/documents/{feedDocumentId} | {get_feeds} | GET /feeds/2020-09-04/feeds |

cancel_feed

CancelFeedResponse cancel_feed(feed_id)

Cancels the feed that you specify. Only feeds with processingStatus=IN_QUEUE can be cancelled. Cancelled feeds are returned in subsequent calls to the getFeed and getFeeds operations. Usage Plan: | Rate (requests per second) | Burst | | —- | —- | | 0.0222 | 10 | For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Example

# load the gem
require 'feeds-api-model'

api_instance = AmzSpApi::FeedsApiModel::FeedsApi.new
feed_id = 'feed_id_example' # String | The identifier for the feed. This identifier is unique only in combination with a seller ID.


begin
  result = api_instance.cancel_feed(feed_id)
  p result
rescue AmzSpApi::FeedsApiModel::ApiError => e
  puts "Exception when calling FeedsApi->cancel_feed: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- feed_id | String| The identifier for the feed. This identifier is unique only in combination with a seller ID. |

Return type

{CancelFeedResponse}

Authorization

No authorization required

HTTP request headers

create_feed

CreateFeedResponse create_feed(body)

Creates a feed. Encrypt and upload the contents of the feed document before calling this operation. Usage Plan: | Rate (requests per second) | Burst | | —- | —- | | 0.0083 | 15 | For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Example

# load the gem
require 'feeds-api-model'

api_instance = AmzSpApi::FeedsApiModel::FeedsApi.new
body = AmzSpApi::FeedsApiModel::CreateFeedSpecification.new # CreateFeedSpecification |


begin
  result = api_instance.create_feed(body)
  p result
rescue AmzSpApi::FeedsApiModel::ApiError => e
  puts "Exception when calling FeedsApi->create_feed: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- body | {CreateFeedSpecification}| |

Return type

{CreateFeedResponse}

Authorization

No authorization required

HTTP request headers

create_feed_document

CreateFeedDocumentResponse create_feed_document(body)

Creates a feed document for the feed type that you specify. This operation returns encryption details for encrypting the contents of the document, as well as a presigned URL for uploading the encrypted feed document contents. It also returns a feedDocumentId value that you can pass in with a subsequent call to the createFeed operation. Usage Plan: | Rate (requests per second) | Burst | | —- | —- | | 0.0083 | 15 | For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Example

# load the gem
require 'feeds-api-model'

api_instance = AmzSpApi::FeedsApiModel::FeedsApi.new
body = AmzSpApi::FeedsApiModel::CreateFeedDocumentSpecification.new # CreateFeedDocumentSpecification |


begin
  result = api_instance.create_feed_document(body)
  p result
rescue AmzSpApi::FeedsApiModel::ApiError => e
  puts "Exception when calling FeedsApi->create_feed_document: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- body | {CreateFeedDocumentSpecification}| |

Return type

{CreateFeedDocumentResponse}

Authorization

No authorization required

HTTP request headers

get_feed

GetFeedResponse get_feed(feed_id)

Returns feed details (including the resultDocumentId, if available) for the feed that you specify. Usage Plan: | Rate (requests per second) | Burst | | —- | —- | | 2.0 | 15 | For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Example

# load the gem
require 'feeds-api-model'

api_instance = AmzSpApi::FeedsApiModel::FeedsApi.new
feed_id = 'feed_id_example' # String | The identifier for the feed. This identifier is unique only in combination with a seller ID.


begin
  result = api_instance.get_feed(feed_id)
  p result
rescue AmzSpApi::FeedsApiModel::ApiError => e
  puts "Exception when calling FeedsApi->get_feed: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- feed_id | String| The identifier for the feed. This identifier is unique only in combination with a seller ID. |

Return type

{GetFeedResponse}

Authorization

No authorization required

HTTP request headers

get_feed_document

GetFeedDocumentResponse get_feed_document(feed_document_id)

Returns the information required for retrieving a feed document's contents. This includes a presigned URL for the feed document as well as the information required to decrypt the document's contents. Usage Plan: | Rate (requests per second) | Burst | | —- | —- | | 0.0222 | 10 | For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Example

# load the gem
require 'feeds-api-model'

api_instance = AmzSpApi::FeedsApiModel::FeedsApi.new
feed_document_id = 'feed_document_id_example' # String | The identifier of the feed document.


begin
  result = api_instance.get_feed_document(feed_document_id)
  p result
rescue AmzSpApi::FeedsApiModel::ApiError => e
  puts "Exception when calling FeedsApi->get_feed_document: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- feed_document_id | String| The identifier of the feed document. |

Return type

{GetFeedDocumentResponse}

Authorization

No authorization required

HTTP request headers

get_feeds

GetFeedsResponse get_feeds(opts)

Returns feed details for the feeds that match the filters that you specify. Usage Plan: | Rate (requests per second) | Burst | | —- | —- | | 0.0222 | 10 | For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Example

# load the gem
require 'feeds-api-model'

api_instance = AmzSpApi::FeedsApiModel::FeedsApi.new
opts = { 
  feed_types: ['feed_types_example'], # Array<String> | A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required.
  marketplace_ids: ['marketplace_ids_example'], # Array<String> | A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify.
  page_size: 10, # Integer | The maximum number of feeds to return in a single call.
  processing_statuses: ['processing_statuses_example'], # Array<String> | A list of processing statuses used to filter feeds.
  created_since: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days.
  created_until: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now.
  next_token: 'next_token_example' # String | A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail.
}

begin
  result = api_instance.get_feeds(opts)
  p result
rescue AmzSpApi::FeedsApiModel::ApiError => e
  puts "Exception when calling FeedsApi->get_feeds: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- feed_types | {Array<String>}| A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required. | [optional] marketplace_ids | {Array<String>}| A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify. | [optional] page_size | Integer| The maximum number of feeds to return in a single call. | [optional] [default to 10] processing_statuses | {Array<String>}| A list of processing statuses used to filter feeds. | [optional] created_since | DateTime| The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days. | [optional] created_until | DateTime| The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now. | [optional] next_token | String| A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail. | [optional]

Return type

{GetFeedsResponse}

Authorization

No authorization required

HTTP request headers