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/createproject',
  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 =>'{
  "domain": "example.com",
  "CallbackURL": "https://docs.cripsa.com",
  "LogoutURL": "https://cripsa.com",
  "stage": "prd"
}',
  CURLOPT_HTTPHEADER => array(
    'organization-id: 696Br2ntX91ngIqFEnfm96FpTscMFXYA1s84xe1c',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;