Yes i already answered that here
Parse the JSON response according to your needs.
Helix returns a array of one array containing the information you need, as documented.
$resp = json_decode($response);
$name = $resp->data[0]->user_name;
Yes i already answered that here
Parse the JSON response according to your needs.
Helix returns a array of one array containing the information you need, as documented.
$resp = json_decode($response);
$name = $resp->data[0]->user_name;