Event Contact

Description

A contact that is associated with an event.

Properties

Property Description
businessName nullable

The name for the business with which this contact is associated.

created read-only

The date on which this contact was created

digitalRules

Collection of digital rules available for this event. Digital rules describe configurations for free digitals downloads.

email

The email address for this contact.

eventContactPermissions

Permissions available for an event contact.

firstName nullable

The first name for this contact.

id

An entity identifier. It may be either an integer or a universally unique identifier (UUID) represented as a string.

lastName nullable

The last name for this contact.

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

name nullable

The full name for this contact.

phone nullable

The phone number for this contact.

photoFavoritesCount read-only

The number of times photos in this event were favorited by the contact.

photoHiddenCount read-only

The number of times photos in this event were hidden by the contact.

thirdPartyId nullable

The identifier for this contact in the source system from which it originated.

type

The type of resource represented.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "A contact that is associated with an event.",
  "properties": {
    "businessName": {
      "description": "The name for the business with which this contact is associated.",
      "nullable": true,
      "type": "string"
    },
    "created": {
      "description": "The date on which this contact was created",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "digitalRules": {
      "description": "Collection of digital rules available for this event. Digital rules\ndescribe configurations for free digitals downloads.",
      "items": {
        "$ref": "#/components/schemas/DigitalRule"
      },
      "title": "Digital Rule",
      "type": "array"
    },
    "email": {
      "description": "The email address for this contact.",
      "format": "email",
      "type": "string"
    },
    "eventContactPermissions": {
      "$ref": "#/components/schemas/EventContactPermissions"
    },
    "firstName": {
      "description": "The first name for this contact.",
      "nullable": true,
      "type": "string"
    },
    "id": {
      "$ref": "#/components/schemas/Id"
    },
    "lastName": {
      "description": "The last name for this contact.",
      "nullable": true,
      "type": "string"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "name": {
      "description": "The full name for this contact.",
      "nullable": true,
      "type": "string"
    },
    "phone": {
      "description": "The phone number for this contact.",
      "nullable": true,
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        }
      ]
    },
    "photoFavoritesCount": {
      "description": "The number of times photos in this event were favorited by the\ncontact.",
      "readOnly": true,
      "type": "integer"
    },
    "photoHiddenCount": {
      "description": "The number of times photos in this event were hidden by the contact.",
      "readOnly": true,
      "type": "integer"
    },
    "thirdPartyId": {
      "description": "The identifier for this contact in the source system from which it\noriginated.",
      "nullable": true,
      "oneOf": [
        {
          "type": "integer"
        },
        {
          "type": "string"
        }
      ]
    },
    "type": {
      "description": "The type of resource represented.",
      "enum": [
        "event-contact"
      ],
      "example": "resource-type",
      "title": "Resource Type",
      "type": "string"
    }
  },
  "title": "Event Contact",
  "type": "object"
}