I typoed
$request = new HTTPRequest(self::API_BASE . ‘/users/?id’ . $channelData[‘data’][‘id’]);
Should be
$request = new HTTPRequest(self::API_BASE . ‘/users/?id=’ . $channelData[‘data’][‘id’]);
Please refer to the documentation:
I typoed
$request = new HTTPRequest(self::API_BASE . ‘/users/?id’ . $channelData[‘data’][‘id’]);
Should be
$request = new HTTPRequest(self::API_BASE . ‘/users/?id=’ . $channelData[‘data’][‘id’]);
Please refer to the documentation: