Pre-approve an Airbnb inquiry
Conversations · POST /v1/conversations/:id/pre-approval
Pre-approve an Airbnb inquiry
POST
/v1/conversations/:id/pre-approvalNote
Airbnb only, for listings connected to Airbnb directly. The guest may book the dates they asked about at the listed price. Guide: /docs/channels/airbnb/inquiries-and-requests
Request
curl -X POST https://api.repull.dev/v1/conversations/164743/pre-approval \
-H "Authorization: Bearer $REPULL_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'Response
{
"conversationId": "164743",
"status": "pre_approved",
"blockInstantBooking": false,
"expiresAt": "2026-09-23T17:40:38Z"
}Body Parameters
blockInstantBookingbooleantrue makes the guest book through the pre-approval rather than Instant Book. Default false. The body is optional.
AI