/** * Selling Partner API for Tokens * The Selling Partner API for Tokens provides a secure way to access a customer\'s PII (Personally Identifiable Information). You can call the Tokens API to get a Restricted Data Token (RDT) for one or more restricted resources that you specify. The RDT authorizes subsequent calls to restricted operations that correspond to the restricted resources that you specified. For more information, see the [Tokens API Use Case Guide](doc:tokens-api-use-case-guide). * * The version of the OpenAPI document: 2021-03-01 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Configuration } from './configuration'; import { AxiosPromise, AxiosInstance } from 'axios'; import { RequestArgs, BaseAPI } from './base'; /** * The request schema for the createRestrictedDataToken operation. * @export * @interface CreateRestrictedDataTokenRequest */ export interface CreateRestrictedDataTokenRequest { /** * The application ID for the target application to which access is being delegated. * @type {string} * @memberof CreateRestrictedDataTokenRequest */ targetApplication?: string; /** * A list of restricted resources. Maximum: 50 * @type {Array} * @memberof CreateRestrictedDataTokenRequest */ restrictedResources: Array; } /** * The response schema for the createRestrictedDataToken operation. * @export * @interface CreateRestrictedDataTokenResponse */ export interface CreateRestrictedDataTokenResponse { /** * A Restricted Data Token (RDT). This is a short-lived access token that authorizes calls to restricted operations. Pass this value with the x-amz-access-token header when making subsequent calls to these restricted resources. * @type {string} * @memberof CreateRestrictedDataTokenResponse */ restrictedDataToken?: string; /** * The lifetime of the Restricted Data Token, in seconds. * @type {number} * @memberof CreateRestrictedDataTokenResponse */ expiresIn?: number; } /** * A list of error responses returned when a request is unsuccessful. * @export * @interface ErrorList */ export interface ErrorList { /** * * @type {Array} * @memberof ErrorList */ errors?: Array; } /** * An error response returned when the request is unsuccessful. * @export * @interface ModelError */ export interface ModelError { /** * An error code that identifies the type of error that occurred. * @type {string} * @memberof ModelError */ code: string; /** * A message that describes the error condition. * @type {string} * @memberof ModelError */ message: string; /** * Additional details that can help the caller understand or fix the issue. * @type {string} * @memberof ModelError */ details?: string; } /** * Model of a restricted resource. * @export * @interface RestrictedResource */ export interface RestrictedResource { /** * The HTTP method in the restricted resource. * @type {string} * @memberof RestrictedResource */ method: RestrictedResourceMethodEnum | 'GET' | 'PUT' | 'POST' | 'DELETE'; /** * The path in the restricted resource. Here are some path examples: - ```/orders/v0/orders```. For getting an RDT for the getOrders operation of the Orders API. For bulk orders. - ```/orders/v0/orders/123-1234567-1234567```. For getting an RDT for the getOrder operation of the Orders API. For a specific order. - ```/orders/v0/orders/123-1234567-1234567/orderItems```. For getting an RDT for the getOrderItems operation of the Orders API. For the order items in a specific order. - ```/mfn/v0/shipments/FBA1234ABC5D```. For getting an RDT for the getShipment operation of the Shipping API. For a specific shipment. - ```/mfn/v0/shipments/{shipmentId}```. For getting an RDT for the getShipment operation of the Shipping API. For any of a selling partner\'s shipments that you specify when you call the getShipment operation. * @type {string} * @memberof RestrictedResource */ path: string; /** * Indicates the type of Personally Identifiable Information requested. This parameter is required only when getting an RDT for use with the getOrder, getOrders, or getOrderItems operation of the Orders API. For more information, see the [Tokens API Use Case Guide](doc:tokens-api-use-case-guide). Possible values include: - **buyerInfo**. On the order level this includes general identifying information about the buyer and tax-related information. On the order item level this includes gift wrap information and custom order information, if available. - **shippingAddress**. This includes information for fulfilling orders. - **buyerTaxInformation**. This includes information for issuing tax invoices. * @type {Array} * @memberof RestrictedResource */ dataElements?: Array; } /** * @export * @enum {string} */ export declare enum RestrictedResourceMethodEnum { Get = "GET", Put = "PUT", Post = "POST", Delete = "DELETE" } /** * TokensApi - axios parameter creator * @export */ export declare const TokensApiAxiosParamCreator: (configuration?: Configuration) => { /** * Returns a Restricted Data Token (RDT) for one or more restricted resources that you specify. A restricted resource is the HTTP method and path from a restricted operation that returns Personally Identifiable Information (PII), plus a dataElements value that indicates the type of PII requested. See the Tokens API Use Case Guide for a list of restricted operations. Use the RDT returned here as the access token in subsequent calls to the corresponding restricted operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). * @param {CreateRestrictedDataTokenRequest} body The restricted data token request details. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createRestrictedDataToken: (body: CreateRestrictedDataTokenRequest, options?: any) => Promise; }; /** * TokensApi - functional programming interface * @export */ export declare const TokensApiFp: (configuration?: Configuration) => { /** * Returns a Restricted Data Token (RDT) for one or more restricted resources that you specify. A restricted resource is the HTTP method and path from a restricted operation that returns Personally Identifiable Information (PII), plus a dataElements value that indicates the type of PII requested. See the Tokens API Use Case Guide for a list of restricted operations. Use the RDT returned here as the access token in subsequent calls to the corresponding restricted operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). * @param {CreateRestrictedDataTokenRequest} body The restricted data token request details. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createRestrictedDataToken(body: CreateRestrictedDataTokenRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * TokensApi - factory interface * @export */ export declare const TokensApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Returns a Restricted Data Token (RDT) for one or more restricted resources that you specify. A restricted resource is the HTTP method and path from a restricted operation that returns Personally Identifiable Information (PII), plus a dataElements value that indicates the type of PII requested. See the Tokens API Use Case Guide for a list of restricted operations. Use the RDT returned here as the access token in subsequent calls to the corresponding restricted operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). * @param {CreateRestrictedDataTokenRequest} body The restricted data token request details. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createRestrictedDataToken(body: CreateRestrictedDataTokenRequest, options?: any): AxiosPromise; }; /** * Request parameters for createRestrictedDataToken operation in TokensApi. * @export * @interface TokensApiCreateRestrictedDataTokenRequest */ export interface TokensApiCreateRestrictedDataTokenRequest { /** * The restricted data token request details. * @type {CreateRestrictedDataTokenRequest} * @memberof TokensApiCreateRestrictedDataToken */ readonly body: CreateRestrictedDataTokenRequest; } /** * TokensApi - object-oriented interface * @export * @class TokensApi * @extends {BaseAPI} */ export declare class TokensApi extends BaseAPI { /** * Returns a Restricted Data Token (RDT) for one or more restricted resources that you specify. A restricted resource is the HTTP method and path from a restricted operation that returns Personally Identifiable Information (PII), plus a dataElements value that indicates the type of PII requested. See the Tokens API Use Case Guide for a list of restricted operations. Use the RDT returned here as the access token in subsequent calls to the corresponding restricted operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). * @param {TokensApiCreateRestrictedDataTokenRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof TokensApi */ createRestrictedDataToken(requestParameters: TokensApiCreateRestrictedDataTokenRequest, options?: any): Promise>; }