Sending invoice channel

SendingInvoiceChannel variations (Email, SMS, PushNotification)

Sending invoice channel

SendingInvoiceChannel (read by BillXmlReader, FarPay Bill) selects the channel used to send the invoice. ChannelType is one of Email, SMS, or PushNotification; ChannelAddress and Notes are optional.

Email

<ExtensibleContent>
  <FarPay>
    <SendingInvoiceChannel>
      <ChannelType>Email</ChannelType>
      <ChannelAddress>[email protected]</ChannelAddress>
      <Notes>Send after 09:00</Notes>
    </SendingInvoiceChannel>
  </FarPay>
</ExtensibleContent>

SMS

<ExtensibleContent>
  <FarPay>
    <SendingInvoiceChannel>
      <ChannelType>SMS</ChannelType>
      <ChannelAddress>+4512345678</ChannelAddress>
    </SendingInvoiceChannel>
  </FarPay>
</ExtensibleContent>

Push notification

<ExtensibleContent>
  <FarPay>
    <SendingInvoiceChannel>
      <ChannelType>PushNotification</ChannelType>
      <ChannelAddress>device-token-abc123</ChannelAddress>
    </SendingInvoiceChannel>
  </FarPay>
</ExtensibleContent>