Header

(Organization id 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/saml/saml-create-project',
  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://example.com/callback",
  "LogoutURL": "https://example.com/logout",
  "stage": "qua"
}',
  CURLOPT_HTTPHEADER => array(
    'organization-id: koO0Gm8xJrjXlBfdtpF7VgnIz',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;