Header
Body Params
LANGUAGE
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.cripsa.com/v2/whatsapp/signin',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"stage": "qua",
"phone_number": "9191919191",
"clientId": "6knfde2q21p77q9k05k43scmfj",
"clientSecret": "lh6pe53nsejc7t5rq1ovanmd2jsuj706oqeggcq7k19suvnodeu",
"domain": "example.com",
"UserPoolId": "us-east-1_vwHaE7t5v",
"userPoolDomain": "example-79"
}',
CURLOPT_HTTPHEADER => array(
'x-api-key: IOjWbS1stM9bT5zyAxvufUfdCGH8Xt2aBq5VT4hf',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;