use seregazhuk\PinterestBot\Api\Forms\Registration;
$registration = new Registration('[email protected]', 'anypass', 'anyname');
$registration
->setAge(30)
->setCountry('DE')
->setMaleGender();
$bot->auth->registerBusiness($registration);
$error = $bot->getLastError();
if($error!= ''){
echo 'ERROR::'.$error;
}
Thanks.