Contact Recent Activity

Description

The recent activity for a contact.

Properties

Property Description
activityDate nullable

The date on which this activity took place.

activityType

Human-readable description of the type of activity.

customInvoiceId nullable

Identifier of the custom invoice related to this activity.

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.

relevantId

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

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": "The recent activity for a contact.",
  "properties": {
    "activityDate": {
      "description": "The date on which this activity took place.",
      "format": "date-time",
      "nullable": true,
      "type": "string"
    },
    "activityType": {
      "description": "Human-readable description of the type of activity.",
      "type": "string"
    },
    "customInvoiceId": {
      "description": "Identifier of the custom invoice related to this activity.",
      "nullable": true,
      "type": "integer"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "relevantId": {
      "$ref": "#/components/schemas/Id"
    },
    "type": {
      "allOf": [
        {
          "enum": [
            "contact-recent-activity"
          ]
        },
        {
          "$ref": "#/components/schemas/Type"
        }
      ]
    }
  },
  "title": "Contact Recent Activity",
  "type": "object"
}