Hey @johnsimpson yes and no, i’m still working on email formatting but the api request is solid and pulls everything I need. I was definitely overthinking it.
I used the Monday documentation to create the query. API v2 Documentation (monday.com) well worth a read if you haven’t already.
Here is the query I am using.
API_QUERY = “”"
{
boards(ids: yourboardnumberhere) {
groups {
title
items(limit: 60) {
# items {
name
column_values(ids: [“long_text”]) {
title
text
}
}
}
}
}
“”"
Let me know how you get on, I probably wont be much use but were all in this together.