Problems when trying to make a POST request via API

When doing the POST via postman it works ok
from NOWA it doesn’t work
We prepare a test so they can see the problem.
I leave the script enabled so you can test it.

<?php $json = file_get_contents('php://input'); $data=json_decode($json); $MyFirst = $data->first ; $msg="No"; if( $MyFirst ) { $msg='Yes' ; } echo $msg ; ?>

I attach two images: in postman it returns ‘yes’ (correct). Nowa gives an error message

c1

happy that it was solved as you told me before :slight_smile: