OBJECT

Activity

link GraphQL Schema definition

  • type Activity {
  • # Activity type
  • activityType: ActivityTypeEnum!
  • # Contact for which the activity was created
  • contacts: [Contact!]
  • # Activity description
  • description: String
  • # ID of the activity
  • id: ID!
  • # When the activity occurred
  • occurredAt: ISO8601DateTime!
  • # Property for which the activity was created
  • properties: [Property!]
  • # Activity source ID
  • sourceId: Int
  • }