OBJECT

WebsiteLog

A log entry for a website visit

link GraphQL Schema definition

  • type WebsiteLog {
  • # The ID of the account associated with the log
  • accountId: ID!
  • # The ID of the contact associated with the log
  • contactId: ID!
  • # The domain name of the website
  • domainName: String!
  • # Indicates whether the log was created via GraphQL mutation
  • gqlCreated: Boolean!
  • # The unique ID of the website log
  • id: ID!
  • # The ID of the property associated with the log
  • propertyId: ID!
  • # The IP address of the visitor
  • remoteIp: String!
  • # The URL of the page visited
  • url: String!
  • }