Shopee SDK API Reference - v2.8.0
    Preparing search index...

    Interface GetVehicleListByCompatibilityDetailRequest

    Request parameters for get_vehicle_list_by_compatibility_detail

    Use this Open API to get vehicle list by brand, model, year, and version.

    interface GetVehicleListByCompatibilityDetailRequest {
        brand_id?: number;
        compatibility_details: string;
        language?: string | number;
        model_id?: number;
        year_id?: number;
    }
    Index

    Properties

    brand_id?: number

    ID of the brand.

    compatibility_details: string

    To inform compatibility list, can be equal to Brand, Model, Year, or Version.Pass the compatibility_details="Brand" to get all brand list;Pass the compatibility_details="Model" and brand_id=1234 to get all model list under brand_id=1234;Pass the compatibility_details="Year" and brand_id=1234 and model_id=2345 to get all year list under brand_id=1234 and model_id=2345;Pass the compatibility_details="Version" and brand_id=1234 and model_id=2345 and year_id=3456 to get all version list under brand_id=1234 and model_id=2345 and year_id=3456.

    language?: string | number

    If language is not uploaded, the default language=en, the following are the languages supported by different markets SG: en ; MY: en / ms-my / zh-hans ; TH: en / th ; VN: en / vi ; PH: en ; TW: en / zh-hant ; ID: en / id ; BR: en / pt-br ; MX: en / es-mx ; CO: en/es-CO ; CL: en/es-CL. Note: For markets that have already launched global tree, Crossboard shop only support returning en and zh-hans language data.

    model_id?: number

    ID of the model.

    year_id?: number

    ID of the year.