channelEmailValidateConfigurationInbound.graphql 362 B

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