Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

{

$input = $request->all();

$saltKey = '';
$saltIndex = 1;

$finalXHeader = hash('sha256','/pg/v1/status/'.$input['merchantId'].'/'.
$input['transactionId'].$saltKey).'###'.$saltIndex;

$response = Curl::to('https://api-preprod.phonepe.com/apis/merchant-
simulator/pg/v1/status/'.$input['merchantId'].'/'.$input['transactionId'])
->withHeader('Content-Type:application/json')
->withHeader('accept:application/json')
->withHeader('X-VERIFY:'.$finalXHeader)
->withHeader('X-MERCHANT-ID:'.$input['transactionId'])
->get();

dd(json_decode($response));
}
?>

You might also like