Installation Request
The Install & Delivery Request feature allows users to specify their requests for the product, facilitating the team's work on fulfilling the request. Required information includes name, phone number, appliance type, model numbers, responses to specific yes/no questions, and additional details about the request.
Retrieve Installation Request
Users can provide various details for their installation requests.
Headers
The JSON data, which includes name, phone number, email, zip code, types, brands, model numbers, and other information, is sent in the raw request body. The server accepts JSON-formatted responses.
Parameters
No parameter required.
Attributes
status
string
The status of the infromation submission.
GET /api/v2/install/request
curl --location 'https://appliance-api.com/api/v2/install/request' \
--header 'x-api-key: your_api_key' \
--header 'x-tenant-id: your_tenant_id' \
--data-raw '{
"name": "Example Example",
"phone_number": "333-333-3333",
"email": "[email protected]",
"zip_code": "60221",
"is_appliance_onsite": true,
"types": [
"Air Conditioners", "Air Conditioners"
],
"brands": [
"LG", "LG"
],
"model_numbers": [
"QAZ00001", "QAZ00001"
],
"is_uninstalling": true,
"is_moved_stairs": true,
"total_stairs": 0,
"is_installing_move_location": true,
"additional_info": null
}'
{
"status": "success"
}