...
locations | object[] | Array of locations |
id | string | ID of the location |
is_active | boolean | Indicates active/non-active state |
name | string | Name of location |
address_line_1 | string | Address line 1 |
address_line_2 | string | Address line 2 |
city | string | City |
latitude | string | Latitude |
longitude | string | Longitude |
province | string | Province |
province_code | string | Province code |
postal_code | string | Postal/Zip code |
phone | string | Phone |
contact_name | string | Contact name |
logo | string | Link to logo |
dealer_id | string | Dealer ID of location |
external_id | string | External ID of location (could be store number) |
holidays | object[] | Array of locations |
working_hours | object | Location business hours |
country | string | Country |
country_code | string | Country code |
mobile_phone | string | Mobile phone |
bs_account_number | string | Bridgestone account number |
product_url | string | Url to the requested product |
Example
Request
https://wl.tireconnect.ca/api/v2/location/findProductLink?key=b471fab8f42cde19bf8a31f2250357d7&external_id=69696696969&part_number=000240
Response
Code Block |
---|
{ "notice": "Success", "data": { "locations": [ { "id": 14713, "is_active": true, "name": "The Queen Mary", "address_line_1": "1126 Queens Hwy, Long Beach", "address_line_2": "", "city": "Los Angeles", "latitude": 33.7514, "longitude": -118.191, "province": "California", "province_code": "CA", "postal_code": "90802", "phone": "8211111111", "contact_name": "First Name Last Name", "logo": "https://wl.tireconnect.ca/uploads/dealer/6cfef6833847d6bd0e301bb14879b1164851386a.jpg", "dealer_id": 11295, "external_id": "696969", "holidays": [ { "name": "New Year's Day", "date": [ "2023-01-01", "2023-01-01" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Martin Luther King Jr. Day", "date": [ "2023-01-18", "2023-01-18" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Easter", "date": [ "2022-04-04", "2022-04-04" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Memorial Day", "date": [ "2022-05-31", "2022-05-31" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "4th of July", "date": [ "2022-07-04", "2022-07-04" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Labor Day", "date": [ "2022-09-06", "2022-09-06" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Veterans Day", "date": [ "2022-11-11", "2022-11-11" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Thanksgiving", "date": [ "2022-11-25", "2022-11-25" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Black Friday", "date": [ "2022-11-26", "2022-11-26" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Christmas Eve", "date": [ "2022-12-24", "2022-12-24" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "Christmas Day", "date": [ "2022-12-25", "2022-12-25" ], "open": [ "09:00", "17:00" ], "break": null }, { "name": "New Year's Eve", "date": [ "2022-12-31", "2022-12-31" ], "open": [ "09:00", "17:00" ], "break": null } ], "working_hours": { "mon": { "open": [ "09:00", "17:00" ], "break": null }, "tue": { "open": [ "09:00", "17:00" ], "break": null }, "wed": { "open": [ "09:00", "17:00" ], "break": null }, "thu": { "open": [ "09:00", "17:00" ], "break": null }, "fri": { "open": [ "09:00", "17:00" ], "break": null }, "sat": { "open": [ "09:00", "17:00" ], "break": null }, "sun": { "open": [ "09:00", "17:00" ], "break": null } }, "country": "United States", "country_code": "US", "mobile_phone": "8211111111", "bs_account_number": "696969", "product_url": "https://app.tireconnect.ca/loc/0c88ef1125eecbde56263d5a560b4248#!results?location_id=14713&part_numbers%5B0%5D=000240&show_summary=1&tag=in_pn%3A000240&alt_search%5Bwidth%5D=195&alt_search%5Bheight%5D=65&alt_search%5Brim%5D=15&filters%5Bbrand%5D%5B0%5D=Firestone" } ] } } |
...