Event Connectors

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

FieldTypeDescription
labelstringContact info label
mailsarrayEmail addresses ({ email })
phonesarrayPhone numbers ({ number })
faxesarrayFax numbers ({ number })
urlsarrayURLs with service type classification
addressesarrayPhysical addresses (see Address)

URLServiceType

Each URL entry carries a urlServiceType indicating what the link is for:

ValueMeaning
generalGeneral-purpose link
bookingTicket or reservation link
reviewReview page
videoVideo content
webshopOnline shop
socialmediaSocial media profile
lastminuteLast-minute deals
virtualtourVirtual tour
dmoDestination marketing organisation
sustainabilitySustainability information
venuefinderVenue finder service
travelbaseTravelbase link
homepageMain 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.

On this page