Introducing the ability to retrieve an item's email address via the API
July 14th, 2022
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": "[email protected]"
}
]
}
]
},
"account_id": 1234567898
}
Happy building!