Lost Sales#
This service is used to retrieve lost sales for a member.
Request
POST /v2/member/lost_sales
Parameters
begin_timestring requiredThe beginning of the time range to query
end_timestring requiredThe end of the time range to query
location_idslist[string] requiredThe IDs of the locations to query
Example
{
"begin_time": "2024-01-01",
"end_time": "2024-01-31",
"location_ids": ["STN"]
}
Response
{
"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"
}
]
}