$client = new \GuzzleHttp\Client();
$url = 'api-url';
$request = $client->post($url, [
'headers' => ['Content-Type' = > 'application/json'],
'json' => ['token' = > 'foo']
]);
return $request;$client = new \GuzzleHttp\Client();
$url = 'api-url';
$request = $client->post($url, [
'headers' => ['Content-Type' = > 'application/json'],
'json' => ['token' = > 'foo']
]);
return $request;