$data["challenge"] ]; header('content-type: application/json'); echo json_encode($message); } //$json = '{"event":{"userId":27016227,"originalTriggerUuid":null,"boardId":2241176404,"groupId":"topics","pulseId":2241176416,"pulseName":"Introductory meeting","columnId":"status","columnType":"color","columnTitle":"Status","value":{"label":{"index":3,"text":"Send Meeting","style":{"color":"#0086c0","border":"#3DB0DF","var_name":"blue-links"}},"post_id":null},"previousValue":{"label":{"index":0,"text":"Working on it","style":{"color":"#fdab3d","border":"#E99729","var_name":"orange"}},"post_id":null},"changedAt":1643863743.4163315,"isTopGroup":true,"app":"monday","type":"update_column_value","triggerTime":"2022-02-03T04:49:04.177Z","subscriptionId":99879028,"triggerUuid":"82ee627c16360e436d61efaaabe32214"}}'; $gtoken = " eyJhbGciOiJIUzI1NiJ9.eyJ0aWQiOjE0NDI1OTUzNSwidWlkIjoyNzAxNjIyNywiaWFkIjoiMjAyMi0wMi0wNFQwMDozMjoyOC4wMDBaIiwicGVyIjoibWU6d3JpdGUiLCJhY3RpZCI6MTA4NDM4NjQsInJnbiI6InVzZTEifQ.ABkBKnRuTU07UC7mYHHuvbxloMkw7YLhVgtCjswewZY"; //$data = json_decode($json, true); //print_r($data); $apiUrl = 'https://api.monday.com/v2'; $headers = ['Content-Type: application/json', 'Authorization: ' . $gtoken]; $query = '{ boards (ids:2241176404) { id name items (ids:2241176416) { id name column_values{ id text } } } }'; $data = @file_get_contents($apiUrl, false, stream_context_create([ 'http' => [ 'method' => 'POST', 'header' => $headers, 'content' => json_encode(['query' => $query]), ] ])); $responseContent = json_decode($data, true); echo json_encode($responseContent); ?>