how to check request body in v2 signature?

I’m trying to study this documenation about getting the hash value. I have this setup

In my backend code. I have this code

$auth = $request->headers->get(‘X-HubSpot-Signature’);

$ve = $request->headers->get(‘X-HubSpot-Signature-Version’);

$email = $request->query->get(‘email’);

$http_method = ‘POST’;

$http_uri = ‘https://evil-yak-56.loca.lt/hubspot/test’;

$client = “bf62d6d3-zzzd-4fbe-817f-33444x475634”;

$request_body = ‘{“email":"sample+n2@gmail.com”}’;

$merge = $client . $http_method . $http_uri . $request_body;

$myHash = hash(‘sha256’, $merge);

I can’t compare the hubspot signature value in $myHash. I don’t know where i can see my body request. May I know also what are the missing data that I need to add in my $request_body.

@zaklein , would you be able to help out here?

never mind. I found the answer. To check your request body, you have to go to monitoring → crm extensions. copy the whole parameter in the url including the ?.whatever the method it used in the url you need to add it to to your $http_method.