Get Property Details Run in API Explorer
Ask AI
Fetch full static details for all contracted properties of the Partner.
GET
/v2/properties
curl \
--request GET 'https://partner.momorooms.com/v2/properties' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"properties": [
{
"propertyId": 42,
"propertyName": "string",
"rating": 42.0,
"cityName": "string",
"country": {
"id": 42,
"name": "string"
},
"address": {
"addressLine1": "string",
"addressLine2": "string",
"addressLine3": "string",
"location": {
"latitude": 42.0,
"longitude": 42.0
}
}
}
]
}
Response examples (500)
{
"errors": [
{
"errorCode": 42,
"errorDescription": "string"
}
]
}