Hi, I have the following JSON to create a new IT Service, but the word "Aplicação" causes an ""Invalid JSON. An error occurred on the server while parsing the JSON text." error.
If I change this word to other without special chars, it works fine.
{
"id":1,
"method":"service.create",
"params":{
"showsla":1,
"sortorder":0,
"goodsla":99.99,
"name":"Aplicação",
"parentid":"0",
"algorithm":1
},
"jsonrpc":"2.0",
"auth":"thesecretauth"
}
There is a way to pass a word with special char in the API? When I use the web interface, it works perfectly.
If I change this word to other without special chars, it works fine.
{
"id":1,
"method":"service.create",
"params":{
"showsla":1,
"sortorder":0,
"goodsla":99.99,
"name":"Aplicação",
"parentid":"0",
"algorithm":1
},
"jsonrpc":"2.0",
"auth":"thesecretauth"
}
There is a way to pass a word with special char in the API? When I use the web interface, it works perfectly.
Comment