preview
Skip to content
Custom Page API

Custom Page API

‘user12345@gmail.com’,
‘name’ => ‘raju222’,
‘user_name’ => ‘raju222’,
‘password’ => ‘123’,
‘phoneNumber’ => ‘312345346’,
‘designationId’ => ‘php’,
‘profile_photo’ => ‘photo url’,
‘user_type,’ => 2,
‘joining_as’ => ‘speaker’,
‘company_name’ => ‘xyz’
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,”https://navkiraninfotech.com/tech_fest/api/v1/user/onboarding_registartion”);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);

// Receive server response …
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec($ch);
curl_close ($ch);
echo json_encode($server_output);
?>