channelEmailValidateConfigurationInbound.graphql 317 B

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