Bad request when calling ADD_ROW api

Bad request when calling ADD_ROW api

I have a web application that uses Spring client to send data do Zoho reports tables, when I run the development server with the same data and same code, all the commands are called correctly and I get 200 response. However, on production server, I am receiving 400 error (bad request), and I'm not understanding what is wrong with the data I send:

This is the url I send the data:  https://reportsapi.zoho.com/api/xxx@xxx.com.br/cervaki-app/Engajamento?ZOHO_ACTION=ADDROW&ZOHO_OUTPUT_FORMAT=JSON&ZOHO_ERROR_FORMAT=JSON&authtoken=xxxxxxxxxx&ZOHO_API_VERSION=1.0

These are the paremeters:

media_periodo=[19.42],
quantidade=[12],
estado_salvo=[MINAS GERAIS],
cidade_salva=[MONTES CLAROS],
sistema_operacional=[ANDROID],
tipo_abertura=[MANUAL],
cidade_atual=[CIDADE DESCONHECIDA],
estado_atual=[ESTADO DESCONHECIDO],
data_hora=[2017-01-30 17:00:00]

This is the table layout:

Am I doing something wrong I didn't noticed?