AutoCare Attributes =================== Retrieve ACES applications and PIES attributes for a part by AAIA brand ID and part number .. grid:: 2 :margin: 0 :padding: 0 .. grid-item:: :columns: 10 .. code-block:: none :caption: Service Endpoint POST https://api.groupvan.com/v2_1/catalog/autocare .. grid-item:: :columns: 2 .. button-link:: https://v21-groupvan-api.dev.groupvan.com/v2_1/docs#/Catalog/post_catalog_autocare :color: success :shadow: Try it Parameters ~~~~~~~~~~ ``brand_aaia_id`` :bdg:`string` :bdg-danger:`required` The AutoCare (AAIA) brand ID of the part's brand ``part_number`` :bdg:`string` :bdg-danger:`required` The part number to look up. Matched exactly and against the stripped part number (punctuation removed) Examples ~~~~~~~~ .. code-block:: json { "brand_aaia_id": "HYVK", "part_number": "AW4038" } Response ~~~~~~~~ .. dropdown:: Response JSON .. code-block:: json { "brand_aaia_id": "HYVK", "part_number": "AW4038", "products": [ { "sku": 2150285, "part_number": "AW4038", "strip_part": "AW4038", "mfr_code": "AIR", "brand_aaia_id": "HYVK", "brand_name": "Airtex Water Pumps", "part_type_id": 2208, "description": "Engine Water Pump", "aces_applications": [ { "application_id": 900123, "part_terminology_id": 2208, "part_terminology_name": "Water Pump", "base_vehicle_id": 18432, "year_id": 2015, "make_id": 54, "make_name": "Ford", "model_id": 764, "model_name": "F-150", "qualifiers": [ { "type": "Engine", "name": "V6 3.5L" } ] } ], "pies_attributes": [ { "name": "Housing Material", "value": "Aluminum", "sequence": 1 } ], "pies_expi_codes": [ { "code": "CTO", "value": "US" } ] } ] }