AmzSpApi::ReportsApiModel::ReportsApi

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

Method | HTTP request | Description ————- | ————- | ————- {cancel_report} | DELETE /reports/2020-09-04/reports/{reportId} | {cancel_report_schedule} | DELETE /reports/2020-09-04/schedules/{reportScheduleId} | {create_report} | POST /reports/2020-09-04/reports | {create_report_schedule} | POST /reports/2020-09-04/schedules | {get_report} | GET /reports/2020-09-04/reports/{reportId} | {get_report_document} | GET /reports/2020-09-04/documents/{reportDocumentId} | {get_report_schedule} | GET /reports/2020-09-04/schedules/{reportScheduleId} | {get_report_schedules} | GET /reports/2020-09-04/schedules | {get_reports} | GET /reports/2020-09-04/reports |

cancel_report

CancelReportResponse cancel_report(report_id)

Cancels the report that you specify. Only reports with processingStatus=IN_QUEUE can be cancelled. Cancelled reports are returned in subsequent calls to the getReport and getReports 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 'reports-api-model'

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
report_id = 'report_id_example' # String | The identifier for the report. This identifier is unique only in combination with a seller ID.


begin
  result = api_instance.cancel_report(report_id)
  p result
rescue AmzSpApi::ReportsApiModel::ApiError => e
  puts "Exception when calling ReportsApi->cancel_report: #{e}"
end

Parameters

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

Return type

{CancelReportResponse}

Authorization

No authorization required

HTTP request headers

cancel_report_schedule

CancelReportScheduleResponse cancel_report_schedule(report_schedule_id)

Cancels the report schedule 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 'reports-api-model'

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
report_schedule_id = 'report_schedule_id_example' # String | The identifier for the report schedule. This identifier is unique only in combination with a seller ID.


begin
  result = api_instance.cancel_report_schedule(report_schedule_id)
  p result
rescue AmzSpApi::ReportsApiModel::ApiError => e
  puts "Exception when calling ReportsApi->cancel_report_schedule: #{e}"
end

Parameters

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

Return type

{CancelReportScheduleResponse}

Authorization

No authorization required

HTTP request headers

create_report

CreateReportResponse create_report(body)

Creates a report. Usage Plan: | Rate (requests per second) | Burst | | —- | —- | | 0.0167 | 15 | For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.

Example

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

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
body = AmzSpApi::ReportsApiModel::CreateReportSpecification.new # CreateReportSpecification |


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

Parameters

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

Return type

{CreateReportResponse}

Authorization

No authorization required

HTTP request headers

create_report_schedule

CreateReportScheduleResponse create_report_schedule(body)

Creates a report schedule. If a report schedule with the same report type and marketplace IDs already exists, it will be cancelled and replaced with this one. 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 'reports-api-model'

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
body = AmzSpApi::ReportsApiModel::CreateReportScheduleSpecification.new # CreateReportScheduleSpecification |


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

Parameters

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

Return type

{CreateReportScheduleResponse}

Authorization

No authorization required

HTTP request headers

get_report

GetReportResponse get_report(report_id)

Returns report details (including the reportDocumentId, if available) for the report 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 'reports-api-model'

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
report_id = 'report_id_example' # String | The identifier for the report. This identifier is unique only in combination with a seller ID.


begin
  result = api_instance.get_report(report_id)
  p result
rescue AmzSpApi::ReportsApiModel::ApiError => e
  puts "Exception when calling ReportsApi->get_report: #{e}"
end

Parameters

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

Return type

{GetReportResponse}

Authorization

No authorization required

HTTP request headers

get_report_document

GetReportDocumentResponse get_report_document(report_document_id)

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

Example

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

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
report_document_id = 'report_document_id_example' # String | The identifier for the report document.


begin
  result = api_instance.get_report_document(report_document_id)
  p result
rescue AmzSpApi::ReportsApiModel::ApiError => e
  puts "Exception when calling ReportsApi->get_report_document: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- report_document_id | String| The identifier for the report document. |

Return type

{GetReportDocumentResponse}

Authorization

No authorization required

HTTP request headers

get_report_schedule

GetReportScheduleResponse get_report_schedule(report_schedule_id)

Returns report schedule details for the report schedule 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 'reports-api-model'

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
report_schedule_id = 'report_schedule_id_example' # String | The identifier for the report schedule. This identifier is unique only in combination with a seller ID.


begin
  result = api_instance.get_report_schedule(report_schedule_id)
  p result
rescue AmzSpApi::ReportsApiModel::ApiError => e
  puts "Exception when calling ReportsApi->get_report_schedule: #{e}"
end

Parameters

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

Return type

{GetReportScheduleResponse}

Authorization

No authorization required

HTTP request headers

get_report_schedules

GetReportSchedulesResponse get_report_schedules(report_types)

Returns report schedule details 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 'reports-api-model'

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
report_types = ['report_types_example'] # Array<String> | A list of report types used to filter report schedules.


begin
  result = api_instance.get_report_schedules(report_types)
  p result
rescue AmzSpApi::ReportsApiModel::ApiError => e
  puts "Exception when calling ReportsApi->get_report_schedules: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- report_types | {Array<String>}| A list of report types used to filter report schedules. |

Return type

{GetReportSchedulesResponse}

Authorization

No authorization required

HTTP request headers

get_reports

GetReportsResponse get_reports(opts)

Returns report details for the reports 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 'reports-api-model'

api_instance = AmzSpApi::ReportsApiModel::ReportsApi.new
opts = { 
  report_types: ['report_types_example'], # Array<String> | A list of report types used to filter reports. When reportTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either reportTypes or nextToken is required.
  processing_statuses: ['processing_statuses_example'], # Array<String> | A list of processing statuses used to filter reports.
  marketplace_ids: ['marketplace_ids_example'], # Array<String> | A list of marketplace identifiers used to filter reports. The reports returned will match at least one of the marketplaces that you specify.
  page_size: 10, # Integer | The maximum number of reports to return in a single call.
  created_since: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | The earliest report creation date and time for reports to include in the response, in ISO 8601 date time format. The default is 90 days ago. Reports are retained for a maximum of 90 days.
  created_until: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | The latest report creation date and time for reports to include in the response, in ISO 8601 date time 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 getReports 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_reports(opts)
  p result
rescue AmzSpApi::ReportsApiModel::ApiError => e
  puts "Exception when calling ReportsApi->get_reports: #{e}"
end

Parameters

Name | Type | Description | Notes ————- | ————- | ————- | ————- report_types | {Array<String>}| A list of report types used to filter reports. When reportTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either reportTypes or nextToken is required. | [optional] processing_statuses | {Array<String>}| A list of processing statuses used to filter reports. | [optional] marketplace_ids | {Array<String>}| A list of marketplace identifiers used to filter reports. The reports returned will match at least one of the marketplaces that you specify. | [optional] page_size | Integer| The maximum number of reports to return in a single call. | [optional] [default to 10] created_since | DateTime| The earliest report creation date and time for reports to include in the response, in ISO 8601 date time format. The default is 90 days ago. Reports are retained for a maximum of 90 days. | [optional] created_until | DateTime| The latest report creation date and time for reports to include in the response, in ISO 8601 date time 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 getReports operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail. | [optional]

Return type

{GetReportsResponse}

Authorization

No authorization required

HTTP request headers