Hi, I have a form on my website and I would like to send the data coming from the form to an API endpoint, but I dont have the API endpoint yet. I would like to test my post request. Is there any way to check my post request to see what data i send?
public function formSubmit(){
$response = Http::post('TEST_API_ENDPOINT_TO_SEE_WHAT_I_SENT', [
'name' => $request->name,
'address' => $request->address,
]);
}
So is there any way to test what I send? is there any service what would give me an API endpoint wich receive my data and show it to me what i sent?