Header
Body Params
LANGUAGE
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.cripsa.com/v2/rbac/createuser',
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 =>'{
"email": "example@cripsa.com",
"password": "Initial@123",
"userPoolId": "us-east-1_iKUDKTB7l",
"roles": "EC2Admin, S3Reader, CognitoAdmin",
"action": "EC2:Install, EC2:Uninstall, S3:CreateBucket, S3:DeleteObject",
"attributes": "IT-Depatment"
}',
CURLOPT_HTTPHEADER => array(
'x-api-key: BGRaldKNhtqqzRWB76imaVZFTEVsfPKF1OF4pSa0',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;