Hi I have this cURL request that I have been trying and failing to get it right, it gives me a 500 Error (Internal Error)
curl -X POST https://api.monday.com/v2 -H “Content-Type:application/json” -H “Authorization: XXXXXXXXXXXX” -d “{"query":"mutation { "create_item" ("item_name": "Testing from Curl","board_id": 1622487812, "group_id": "emailed_items") { id }}” -v
I’m not sure why it won’t succeed because the GrahpQL query below works just fine:
mutation {
create_item (
board_id: 1622487812,
group_id: “emailed_items”,
item_name: “Testing from GraphQl”)
{ id }
}
Please help me and thanks in advance.


