OBJECT

CallTracking

A CallTracking

link GraphQL Schema definition

  • type CallTracking {
  • # Id
  • id: Int!
  • # Name
  • name: String!
  • # Phone destination
  • phoneDestination: PhoneNumber!
  • # Call tracker phone number
  • phoneDid: PhoneNumber!
  • # Mobile phone number, used to send a SMS when a call has been missed
  • phoneMobileNumberForMissedCall: PhoneNumber
  • # Configuration SMS sender
  • missedCallNotificationSenderName: String
  • # Configuration template SMS with site name
  • missedCallNotificationCompanyName: String
  • # Should caller's phone number be displayed?
  • callerId: Boolean!
  • # Should use call center number?
  • useCallCenterNumber: Boolean!
  • # Tracked Site
  • site: Site!
  • # Date of creation
  • createdAt: DateTime!
  • # Date of last update
  • updatedAt: DateTime!
  • }