F.A.Q.

How to get the sent and received emails of a card via API

  • 26 October 2023
  • 2 replies
  • 36 views
How to get the sent and received emails of a card via API
Userlevel 7

To get all the emails sent and received from a card, just run the following query:

query{
  card(id: XXXXX) {
    title
    comments {
      id
      author_name
      created_at
      text
    }
    inbox_emails {
      from
      fromName
      subject
      to
      cc
      bcc
      body
      sent_via_automation
      state
    }
  }
}


2 replies

Userlevel 7
Badge +18

👏👏👍👍

Userlevel 7
Badge +13

👍👍👍👍👍

Reply