Information required to create the feed.

CreateFeedSpecification

interface CreateFeedSpecification {
    feedOptions?: { [key: string]: string };
    feedType: string;
    inputFeedDocumentId: string;
    marketplaceIds: string[];
}

Properties

feedOptions?: { [key: string]: string }

Additional options to control the feed. These vary by feed type.

CreateFeedSpecification

feedType: string

The feed type.

CreateFeedSpecification

inputFeedDocumentId: string

The document identifier returned by the createFeedDocument operation. Upload the feed document contents before calling the createFeed operation.

CreateFeedSpecification

marketplaceIds: string[]

A list of identifiers for marketplaces that you want the feed to be applied to.

CreateFeedSpecification