Hi, I need help I’m sending an http request from Power Apps, so every time a new email comes in on outlook I send the email data to monday.com including the email attachments if there’s any.
Here is my request’s body:
{
"query": "mutation { create_item (board_id: 1622487816, group_id: \\"emailed_items\\", item_name: \\"@{triggerOutputs()?u'body/subject']}\\", column_values: {attachment:@{triggerOutputs()?u'body/attachments']} }) { id } } "
}
This is the Error I am getting from Monday:
{
"errors": o
{
"message": "Parse error on \\"@odata.type\\" (STRING) at G1, 130]",
"locations": o
{
"line": 1,
"column": 130
}
]
}
],
"account_id": 9415663
}
Please assist and thanks in advance.