Book Consultation
POST
https://tophamtechbeb.com/api/toptech/onboarding/v1/request-consultationHeaders
Content-Type: application/json X-API-Key: treas-demo-api-key
Request Body
{
"name": "string (required)",
"email": "string (required)",
"phone": "string (required)",
"brokerage": "string (required)",
"state": "string (required, 2-letter state code)",
"package": "Single Agent | Small Team (required)",
"needs": "string (required)"
}Response
200 OK - Consultation request submitted successfully 400 Bad Request - Invalid or missing parameters 500 Internal Server Error - Server error
Example
curl -X POST https://tophamtechbeb.com/api/toptech/onboarding/v1/request-consultation \
-H "Content-Type: application/json" \
-H "X-API-Key: treas-demo-api-key" \
-d '{
"name": "John Doe",
"email": "john@example.com",
"phone": "555-1234",
"brokerage": "ABC Realty",
"state": "OK",
"package": "Single Agent",
"needs": "Looking for AI-powered website with CRM"
}'