Contactinfo
Contact details: mail, phone, fax, URLs with URLServiceType, and addresses
The Contactinfo object groups all contact details for a TRCItem: email addresses, phone numbers, fax numbers, URLs, and physical addresses.
Example
{
"contactinfo": {
"mails": [
{ "email": "info@rijksmuseum.nl" }
],
"phones": [
{ "number": "+31 20 6747000" }
],
"urls": [
{
"url": "https://www.rijksmuseum.nl",
"urlServiceType": "homepage"
},
{
"url": "https://www.rijksmuseum.nl/tickets",
"urlServiceType": "booking",
"reservations": true
}
],
"addresses": [
{
"main": true,
"street": "Museumstraat",
"housenr": "1",
"zipcode": "1071 XX",
"city": "Amsterdam"
}
]
}
}Fields
| Field | Type | Description |
|---|---|---|
label | string | Contact info label |
mails | array | Email addresses ({ email }) |
phones | array | Phone numbers ({ number }) |
faxes | array | Fax numbers ({ number }) |
urls | array | URLs with service type classification |
addresses | array | Physical addresses (see Address) |
URLServiceType
Each URL entry carries a urlServiceType indicating what the link is for:
| Value | Meaning |
|---|---|
general | General-purpose link |
booking | Ticket or reservation link |
review | Review page |
video | Video content |
webshop | Online shop |
socialmedia | Social media profile |
lastminute | Last-minute deals |
virtualtour | Virtual tour |
dmo | Destination marketing organisation |
sustainability | Sustainability information |
venuefinder | Venue finder service |
travelbase | Travelbase link |
homepage | Main website homepage |
The homepage value was recently added to distinguish a primary website URL from other general links.
See the API Reference for the full Contactinfo schema.