Hello, good day everyone. I have two different applications that use the monday API to create items within a board and today they simply stopped working (Yesterday they were still working) and show this error when sending requests to create an item:
{
“errors”:
{
“message”: “parsing error: syntax error: unexpected line terminator”,
“locations”:
{
“line”: 6,
“column”: 40
}
],
“extensions”: {
“code”: “PARSING_ERROR”
}
},
{
“message”: “parsing error: syntax error: expected a valid Value”,
“locations”: e
{
“line”: 18,
“column”: 25
}
],
“extensions”: {
“code”: “PARSING_ERROR”
}
}
],
this is an example of a request i sent:
{“query”:“mutation { \\n create_item (\\n board_id: 4485776595, \\n group_id: "grupo_nuevo", \\n item_name: "Emma",\\n column_values: "{\\"date4\\": \\"2024-10-24\\", \\"phone\\": \\"\\", \\n \\"dup__of_pescado\\": \\"2\\", \\"dup__of_lim_n\\": \\"0\\", \\n \\"numbers52\\": \\"0\\", \\"dup__of_menta\\": \\"0\\", \\n \\"n_meros__1\\": \\"0\\", \\n \\"personas\\": \\"31119901\\", \\"estado_19\\": \\"Congreso Internacional de Pediatría\\", \\n \\"n_meros\\": \\"0.00\\", \\"estado_18\\": \\"Sin Efecto Fiscal\\", \\n \\"estado_1\\": \\"No\\", \\"estado_165\\": \\"No\\", \\n \\"estado_11\\": \\"No\\", \\n \\"texto\\": \\"Selecciona una Especialidad\\", \\"texto8\\": \\"\\",\\n \\"tel_fono_1\\": \\"\\", \\"dup__of_colonia\\": \\"\\", \\n \\"dropdown9\\": \\"Seleccione un Estado\\",\\n \\"metodo_de_pago\\": \\"Transferencia\\"}"\\n ) { \\n id \\n }\\n }”}
Has anyone started experiencing any similar errors when using the API?