Available Pages
Each page can be embedded independently in your interface. Use moz.showPage('PageKey') to render a specific page.
Listing
| Page | Description | Key |
|---|---|---|
| Profile management | View and edit all venue listing data | Listing |
| Analytics | Listing performance insights | ListingAnalytics |
Reviews
| Page | Description | Key |
|---|---|---|
| Comments management | View and reply to reviews across all channels | ReviewsPage |
| Analytics | Review trends and sentiment insights | ReviewAnalytics |
Settings
| Page | Description | Key |
|---|---|---|
| Reply templates | Create reply templates by rating and language | ReplyTemplates |
| Notifications | Configure notification preferences | Notifications |
Usage
<script type="text/javascript">
const moz = mozrest.init('container-id', {
partnerId: 'your-partner-id',
accessKey: 'venue-access-key',
});
// Render any page by its key
moz.showPage('ReviewsPage');
</script>
You can call moz.showPage() multiple times to switch between pages dynamically, or embed multiple SDK instances in separate <div> elements to display several pages simultaneously.