channelEmailValidateConfigurationInbound.graphql 394 B

123456789101112131415161718
  1. mutation channelEmailValidateConfigurationInbound(
  2. $inboundConfiguration: ChannelEmailInboundConfigurationInput!
  3. ) {
  4. channelEmailValidateConfigurationInbound(
  5. inboundConfiguration: $inboundConfiguration
  6. ) {
  7. success
  8. mailboxStats {
  9. contentMessages
  10. archivePossible
  11. archivePossibleIsFallback
  12. archiveWeekRange
  13. }
  14. errors {
  15. ...errors
  16. }
  17. }
  18. }