Recherche des postes d'un étudiant
<?php
$student = $api->searchStudentByLogin('11goreti');
$mandates = $student->getCurrentMandates();
$mandates = $student->getAllMandates();
foreach ($mandates as $mandate){
echo $mandate->getStartDate()->format('d/m/Y');
$position = $mandate->getPosition();
echo $position->getName();
echo $position->getDescription();
$asso = $position->getAssociation();
}
$associations = $student->getCurrentAssociations();
$associations = $student->getAllAssociations();