Hi
I know how to get in PHP the array Answers but now I want to get some informations from this:
"event_id": "01G0GWTNMQ5DXGX6BPPPG0DDD2",
"event_type": "form_response",
"form_response": {
"form_id": "FvKcTWd8",
"token": "v2iue2ulp9c4lvv2ic8a9wbjc3l6v59s",
"landed_at": "2022-04-13T07:21:15Z",
"submitted_at": "2022-04-13T07:22:26Z",
"definition": {
"id": "FvKcTWd8",
"title": "Replay Webinar (TEST PBS)",
I tried:
$data = json_decode(file_get_contents('php://input'));
$infos = $data->form_response;
echo $infos->event_id;
echo $infos->form_response->definition->title;
without sucess…
Thanks