Introducing the ability to retrieve an item's email address via the API

You can now retrieve an item’s email address via the API!

The ‘items’ query will now accept an ‘email’ field. Here is an example of a query for an item’s email address:

query {
  boards (ids: 12345678) {
    items {
      id
      email
    }
  }
}

The query above will result in a response like this:

{
  "data": {
    "boards": [
      {
        "items": [
          {
            "id": "1234567899",
            "email": "appleseed_pulse_1234567890@use1.mx.monday.com"
          }
        ]
      }
    ]
  },
  "account_id": 1234567898
}

Happy building!

4 Likes