Skip to main content

QueueCeContactStoreTextMessageCommunicationInput

Defines the input to queue a text message (SMS) communication for a continuing education contact store.

input QueueCeContactStoreTextMessageCommunicationInput {
ceContactStoreId: ID!
communicationTagCode: String
contactIds: [ID!]!
delayedDeliveryDate: DateTime
isMarketing: Boolean
messageBody: String!
senderNumber: String
}

Fields

QueueCeContactStoreTextMessageCommunicationInput.ceContactStoreId ● ID! non-null scalar

The identifier of the continuing education contact store for this communication. The contacts must be linked to this continuing education contact store.

QueueCeContactStoreTextMessageCommunicationInput.communicationTagCode ● String scalar

The code of the communication tag to associate with the text message communication. Optional.

QueueCeContactStoreTextMessageCommunicationInput.contactIds ● [ID!]! non-null scalar

The list of identifiers of the contacts to send the text message to.

Rules:

  • The list must not be empty, i.e. it must contain at least one element.
  • All identifiers must be linked to the continuing education contact store specified in ceContactStoreId.

QueueCeContactStoreTextMessageCommunicationInput.delayedDeliveryDate ● DateTime scalar

The date at which the text message communication will be queued to be sent to recipients. Optional.

Rules:

  • When specified, the value must be in the future.
  • When not specified, the text message communication will be queued to be sent immediately.

QueueCeContactStoreTextMessageCommunicationInput.isMarketing ● Boolean scalar

A flag indicating whether the text message communication is marketing material. Optional. When not specified, the default value is false.

QueueCeContactStoreTextMessageCommunicationInput.messageBody ● String! non-null scalar

The plain text content of the text message.

QueueCeContactStoreTextMessageCommunicationInput.senderNumber ● String scalar

The phone number of the sender for the text message. Optional. When not specified, the continuing education contact store's configured SMS gateway default sender number will be used.

Member Of

queueCeContactStoreTextMessageCommunication mutation