Home Services Request
$0.05per callhomeservices.requestSubmit a service request to a specific professional (from homeservices.search results)
Endpoint
POST /v1/tools/homeservices.request/tasksInput
| Field | Type | Required | Description |
|---|---|---|---|
| pro_id | string | yes | Professional ID from homeservices.search results (e.g. pro_abc123) |
| requester | object | yes | |
| notes | string | yes | Job description — details of what work is needed |
Output
| Field | Type | Description |
|---|---|---|
| request_id | string | Unique ID for this service request |
| pro_id | string | ID of the professional notified |
| pro_name | string | Name of the professional notified |
| status | string | Always 'sent' on success |
| message | string | Human-readable confirmation message |
Example
Request
{
"pro_id": "pro_abc123",
"requester": {
"name": "John Doe",
"phone": "415-555-0100"
},
"notes": "Leaky faucet in kitchen, needs repair ASAP"
}Response
{
"request_id": "req_xk8f2a9c0012",
"pro_id": "pro_abc123",
"pro_name": "Bay Area Plumbing",
"status": "sent",
"message": "Request sent to Bay Area Plumbing."
}