Selling Partner API for Catalog Items The Selling Partner API for Catalog Items provides programmatic access to information about items in the Amazon catalog. For more information, refer to the Catalog Items API Use Case Guide.

The version of the OpenAPI document: 2022-04-01

NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). https://openapi-generator.tech Do not edit the class manually.

interface ConfigurationParameters {
    accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>);
    apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>);
    baseOptions?: any;
    basePath?: string;
    formDataCtor?: (new () => any);
    password?: string;
    username?: string;
}

Properties

accessToken?: string | Promise<string> | ((name?, scopes?) => string) | ((name?, scopes?) => Promise<string>)

Type declaration

    • (name?, scopes?): string
    • Parameters

      • Optional name: string
      • Optional scopes: string[]

      Returns string

Type declaration

    • (name?, scopes?): Promise<string>
    • Parameters

      • Optional name: string
      • Optional scopes: string[]

      Returns Promise<string>

apiKey?: string | Promise<string> | ((name) => string) | ((name) => Promise<string>)

Type declaration

    • (name): string
    • Parameters

      • name: string

      Returns string

Type declaration

    • (name): Promise<string>
    • Parameters

      • name: string

      Returns Promise<string>

baseOptions?: any
basePath?: string
formDataCtor?: (new () => any)

Type declaration

    • new (): any
    • Returns any

password?: string
username?: string