1. Get Property Info
/openapi_property_info.php
Basic profile of the authenticated property: name, address, contact details, check-in/out times, currency and policies. Strictly read-only — property information can never be modified through the Open API, and credentials, payment keys or internal references are never returned.
- No request body needed — GET with headers only, or POST with an empty JSON object {}.
Example request (curl)
curl -s https://openapi.digibeds.com/openapi_property_info.php \ -H "Authorization: Bearer <your refresh token>" \ -H "X-Property-Id: <your property id>"
Example success response (tap to expand)
{
"success": true,
"request_id": "a4036f79\u2026",
"timestamp": "2026-07-19T04:50:13+00:00",
"data": {
"property_id": "474255",
"property": {
"property_name": "Demo Hotel Digibeds",
"address": "Barakhamba Road, Cannaught Place",
"city": "New Delhi",
"state": "Delhi",
"country": "India",
"country_code": "IN",
"hotel_time_zone": "Asia/Kolkata",
"pin_code": "110001",
"checkin_time": "15:00:00",
"checkout_time": "11:30:00",
"phone_country_code": "+91",
"phone_number": "9918041111",
"email": "demo@\u2026",
"num_rooms": 47,
"primary_currency": "INR",
"hotel_currency": "INR",
"logo_url": "https://\u2026/logo.png",
"cancellation_policy": "\u2026",
"refund_policy": "\u2026"
},
"read_only": true
}
}Endpoint errors
| HTTP | Code | When |
|---|---|---|
| 404 | PROPERTY_NOT_FOUND | No profile record for the property. |
| 405 | METHOD_NOT_ALLOWED | A method other than GET or POST was used. |