@sp-api-sdk/fba-inbound-eligibility-api-v1
Version:
With the FBA Inbound Eligibility API, you can build applications that let sellers get eligibility previews for items before shipping them to Amazon's fulfillment centers. With this API you can find out if an item is eligible for inbound shipment to Amazon
96 lines (95 loc) • 4.13 kB
TypeScript
/**
* Selling Partner API for FBA Inbound Eligibilty
* With the FBA Inbound Eligibility API, you can build applications that let sellers get eligibility previews for items before shipping them to Amazon\'s fulfillment centers. With this API you can find out if an item is eligible for inbound shipment to Amazon\'s fulfillment centers in a specific marketplace. You can also find out if an item is eligible for using the manufacturer barcode for FBA inventory tracking. Sellers can use this information to inform their decisions about which items to ship Amazon\'s fulfillment centers.
*
* The version of the OpenAPI document: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The response object which contains the ASIN, marketplaceId if required, eligibility program, the eligibility status (boolean), and a list of ineligibility reason codes.
* @export
* @interface ItemEligibilityPreview
*/
export interface ItemEligibilityPreview {
/**
* The ASIN for which eligibility was determined.
* @type {string}
* @memberof ItemEligibilityPreview
*/
'asin': string;
/**
* The marketplace for which eligibility was determined.
* @type {string}
* @memberof ItemEligibilityPreview
*/
'marketplaceId'?: string;
/**
* The program for which eligibility was determined.
* @type {string}
* @memberof ItemEligibilityPreview
*/
'program': ItemEligibilityPreviewProgramEnum;
/**
* Indicates if the item is eligible for the program.
* @type {boolean}
* @memberof ItemEligibilityPreview
*/
'isEligibleForProgram': boolean;
/**
* Potential Ineligibility Reason Codes.
* @type {Array<string>}
* @memberof ItemEligibilityPreview
*/
'ineligibilityReasonList'?: Array<ItemEligibilityPreviewIneligibilityReasonListEnum>;
}
export declare const ItemEligibilityPreviewProgramEnum: {
readonly Inbound: "INBOUND";
readonly Commingling: "COMMINGLING";
};
export type ItemEligibilityPreviewProgramEnum = typeof ItemEligibilityPreviewProgramEnum[keyof typeof ItemEligibilityPreviewProgramEnum];
export declare const ItemEligibilityPreviewIneligibilityReasonListEnum: {
readonly FbaInb0004: "FBA_INB_0004";
readonly FbaInb0006: "FBA_INB_0006";
readonly FbaInb0007: "FBA_INB_0007";
readonly FbaInb0008: "FBA_INB_0008";
readonly FbaInb0009: "FBA_INB_0009";
readonly FbaInb0010: "FBA_INB_0010";
readonly FbaInb0011: "FBA_INB_0011";
readonly FbaInb0012: "FBA_INB_0012";
readonly FbaInb0013: "FBA_INB_0013";
readonly FbaInb0014: "FBA_INB_0014";
readonly FbaInb0015: "FBA_INB_0015";
readonly FbaInb0016: "FBA_INB_0016";
readonly FbaInb0017: "FBA_INB_0017";
readonly FbaInb0018: "FBA_INB_0018";
readonly FbaInb0019: "FBA_INB_0019";
readonly FbaInb0034: "FBA_INB_0034";
readonly FbaInb0035: "FBA_INB_0035";
readonly FbaInb0036: "FBA_INB_0036";
readonly FbaInb0037: "FBA_INB_0037";
readonly FbaInb0038: "FBA_INB_0038";
readonly FbaInb0050: "FBA_INB_0050";
readonly FbaInb0051: "FBA_INB_0051";
readonly FbaInb0053: "FBA_INB_0053";
readonly FbaInb0055: "FBA_INB_0055";
readonly FbaInb0056: "FBA_INB_0056";
readonly FbaInb0059: "FBA_INB_0059";
readonly FbaInb0065: "FBA_INB_0065";
readonly FbaInb0066: "FBA_INB_0066";
readonly FbaInb0067: "FBA_INB_0067";
readonly FbaInb0068: "FBA_INB_0068";
readonly FbaInb0095: "FBA_INB_0095";
readonly FbaInb0097: "FBA_INB_0097";
readonly FbaInb0098: "FBA_INB_0098";
readonly FbaInb0099: "FBA_INB_0099";
readonly FbaInb0100: "FBA_INB_0100";
readonly FbaInb0103: "FBA_INB_0103";
readonly FbaInb0104: "FBA_INB_0104";
readonly FbaInb0197: "FBA_INB_0197";
readonly UnknownInbErrorCode: "UNKNOWN_INB_ERROR_CODE";
};
export type ItemEligibilityPreviewIneligibilityReasonListEnum = typeof ItemEligibilityPreviewIneligibilityReasonListEnum[keyof typeof ItemEligibilityPreviewIneligibilityReasonListEnum];