- Overview
- Reference
- API Structure
- Public API
- Introduction
- Loyalty Club
- Member
- Offers
- Rewards
- Games
- CMS Content
- Introduction
- Website
- Venue Info
- Components
- Pages
- Articles
- Events
- Events Groups
- Job Postings
- Service Messages
- Stores
- Stores Categories
- Promotions
- Press Releases
- Attachments
- Management API
- Introduction
- Core
- Applications
- Privacy Policy
- Cookie Policy
- Terms
- Domains
- Domain Email Configs
- Domain Web Configs
- TLS Certificates
- Links
- Fonts
- Subunits
- Subunits Scopes
- SMS Sender Identities
- Contacts
- Translations
- Promotions Policy
- Tracker
- Social Logins
- Billing
- Members
- Listing Members
- Member Profile
- Imports
- Groups
- Programs
- Benefits
- Cars
- Webhooks
- Misc
- Receipts
- Stores
- Offers
- Rewards
- Triggerer
- CMS
- Introduction
- Pages
- Components
- Website
- Website Domains
- Venue Info
- Landing Pages
- Landing Page Templates
- Articles
- Events
- Events Groups
- Job Postings
- Press Releases
- Tags
- Service Messages
- Content Prototypes
- ContentPrototype Model
- List Content Prototypes
- Show Content Prototype
- Create Content Prototype
- Update Content Prototype
- Destroy Content Prototype
- List Organization Content Prototypes
- Show Organization Content Prototype
- Create Organization Content Prototype
- Update Organization Content Prototype
- Destroy Organization Content Prototype
- Mixed Content
- Attachments
- Events
- Games
- Scraper
- Files
- Receipts
- Users API
- Operations API
- Introduction
- Manager API
- Tenant API
- Messaging API
- Data API
- ML API
- Introduction
- Predict Sending KPI v1
- Explain Sending KPI Prediction v1
- Predict Sending KPI In Date Range v1
- Predict Sending Popularity v2
- Predict Sending Text Popularity v2
- Predict Sending Time Series Popularity v2
- Explain Sending Popularity Prediction v2
- Explain Sending Text Popularity Prediction v2
- Explain Sending Time Series Popularity Prediction v2
- Recommend sending time v2
- Generate Image
- Generate Text
- Generate Sending Text
- (Draft) Reporting API
- Other
Introduction
VenueInfo model#
Example#
{
"venue_info": {
"description": {
"en": "Description",
"pl": "Opis"
},
"phone_number": "4740769126",
"email": "trondheim@example.com",
"region": "Trøndelag",
"city": "Trondheim",
"zip_code": "7018",
"address": "Mellomila 88",
"latitude": 63.43220832751197,
"longitude": 10.3564763599887,
"social_profiles": {
"facebook": "https://example.com/facebook",
"twitter": "https://example.com/twitter"
},
"opening_hours": [
{ "type": "weekday", "period": "monday", "hours": { "opens_at": "10:00", "closes_at": "18:00" } },
{ "type": "weekday", "period": "tuesday", "hours": { "opens_at": "10:00", "closes_at": "15:00" } },
{ "type": "weekday", "period": "tuesday", "hours": { "opens_at": "16:00", "closes_at": "18:00" } },
{ "type": "weekday", "period": "wednesday", "hours": { "opens_at": "10:00", "closes_at": "18:00" } },
{ "type": "weekday", "period": "thursday", "hours": { "opens_at": "10:00", "closes_at": "18:00" } },
{ "type": "weekday", "period": "friday", "hours": {"opens_at": "10:00", "closes_at": "18:00" } },
{ "type": "weekday", "period": "saturday", "hours": { "opens_at": "12:00", "closes_at": "15:00" } },
{ "type": "weekday", "period": "sunday", "hours": null },
{ "type": "day", "period": "2023-05-01", "hours": null },
{ "type": "day", "period": "2023-12-22", "hours": { "opens_at": "12:00", "closes_at": "14:00" } },
{ "type": "day", "period": "2023-12-25", "hours": null, "description": "Christmas" }
]
}
}
Definition#
Key | Type | Optional | Description |
---|---|---|---|
description | string | yes | Depends on X-Locale header |
phone_number | string (msisdn) | yes | |
string | yes | ||
region | string | yes | |
city | string | yes | |
zip_code | string | yes | |
address | string | yes | |
latitude | float | yes | |
longitude | float | yes | |
social_profiles | object | yes | Venue's social media URLs. Available keys: facebook , linkedin , youtube , instagram , twitter |
opening_hours | OpeningHoursItem[] | yes |
Modified at 2024-06-28 12:03:12