Appointment Request
POST
/org/appointment-request
const url = 'https://engine.bindly.insure/org/appointment-request';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"agency_name":"example","email":"example","phone":"example","website":"example","npn":"example","fein":"example","address_line1":"example","address_line2":"example","address_city":"example","address_state":"example","address_zip":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://engine.bindly.insure/org/appointment-request \ --header 'Content-Type: application/json' \ --data '{ "agency_name": "example", "email": "example", "phone": "example", "website": "example", "npn": "example", "fein": "example", "address_line1": "example", "address_line2": "example", "address_city": "example", "address_state": "example", "address_zip": "example" }'Request a Hedge appointment for this agency (when the workspace has no Hedge account yet), the REST twin of the MCP request_hedge_appointment tool. Defaults come from the workspace’s agency profile in Bindly; explicit fields override.
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
AppointmentRequest
Every field optional: defaults come from the workspace’s agency profile in Bindly (agency_name and email are required overall).
object
Examplegenerated
{ "agency_name": "example", "email": "example", "phone": "example", "website": "example", "npn": "example", "fein": "example", "address_line1": "example", "address_line2": "example", "address_city": "example", "address_state": "example", "address_zip": "example"}Responses
Section titled “Responses”Successful Response
Media typeapplication/json
AppointmentRequestResponse
object
status
required
Status
string
Examplegenerated
{ "status": "example"}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}