Json with SENTENCE

Your help please, I need to send this query by json but it does not work when sending in json

This is the statement in mysql for manticore and it works
select * from causes where match(‘“nilo gonzalo almachi” SENTENCE carlos’)

and this is in json and it doesn’t work
{
“index”:“causes”,
“query”:{
“bool”:{
“must”:
{“match_phrase”:{
“text”:“"gonzalo nilo"”
}
}
}
}
}

please help

you could use query_string JSON query

thanks for your prompt response