Converted to a Feature Request
You can email updates to an item by sending to the email here:
Similarly, you can create items in a board by email using the email address found here:
Both of these should be exposed in the GraphQL API, but I can only find the one for items:
query get_board_items($ids: [ID!]!) {
account {
slug
}
boards(ids: $ids) {
id
# email # THIS IS INVALID !!!
items_page (limit: 1) {
items {
id
email
}
}
}
me {
id
}
}
With variables:
{
"ids": [
"1870827708"
]
}
Produces:
{
"data": {
"account": {
"slug": "dsapps-develop"
},
"boards": [
{
"id": "1870827708",
"items_page": {
"items": [
{
"id": "1941585297",
"email": "dsapps_pulse_194XXX97_943XXX7f12839c1c53ef__60XXX4@euc1.mx.monday.com"
}
]
}
}
],
"me": {
"id": "60XXX4"
}
},
...
}
But the email
property is not available in the boards
object.
How can I get the email for the board?
If it’s not available in the API, perhaps it can be constructed from something?
It appears that the email address is in the following format:
`${slug}_board_${boardId}_${someGuid}__${myUserId}@${region}.mx.monday.com`
We already have slug
, boardId
, & myUserId
.
Perhaps we can get the missing elements from the API?
someGuid
- no idea what this isregion
- where you’re hosted –au
,euc
, orus
Cc: @dipro please convert to a feature request if not currently possible