Header

(Put 25 character Organization id which you can see in your profile)
Body Params

LANGUAGE


<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => https://api.cripsa.com/v2/passwordless/sign-in',
  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",
  "email": "test@example.com",
  "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;