Lost Sales ========== This service is used to retrieve lost sales for a member. .. grid:: 1 :gutter: 2 .. grid-item-card:: :class-header: bg-light Request ^^^^^^^ .. code-block:: none POST /v2/member/lost_sales **Parameters** ``begin_time`` :bdg:`string` :bdg-danger:`required` The beginning of the time range to query ``end_time`` :bdg:`string` :bdg-danger:`required` The end of the time range to query ``location_ids`` :bdg:`list[string]` :bdg-danger:`required` The IDs of the locations to query **Example** .. code-block:: json { "begin_time": "2024-01-01", "end_time": "2024-01-31", "location_ids": ["STN"] } .. grid:: 1 :gutter: 2 .. grid-item-card:: :class-header: bg-light Response ^^^^^^^^ .. code-block:: json { "lost_sales": [ { "comments": "", "competitor_comment": "", "contact_info": "", "datetime_occurred": "2024-05-16T14:51:55", "description": "Price too high", "location": "STN", "mfr_code": "CEN", "part_description": "Disc Brake Rotor And Hub Assembly ", "part_number": "320.66025F", "selling_price": 0.0, "username": "testuser", "vehicle": "2001 Chevrolet Express 1500" }, { "comments": "", "competitor_comment": "", "contact_info": "", "datetime_occurred": "2024-03-20T19:11:30", "description": "Insufficient quantity on hand", "location": "STN", "mfr_code": "FFH", "part_description": "Engine Air Filter", "part_number": "PA4878F", "selling_price": 0.0, "username": "testuser", "vehicle": "1997 Ford F-150" }, { "comments": "", "competitor_comment": "", "contact_info": "", "datetime_occurred": "2024-03-15T19:10:42", "description": "Insufficient quantity on hand", "location": "STN", "mfr_code": "RAY", "part_description": "Disc Brake Rotor And Hub Assembly ", "part_number": "66630", "selling_price": 0.0, "username": "testuser", "vehicle": "1997 Ford F-150" } ] }