curl --request POST \
--url https://cucuniversity.edtools.co/api/method/education.education.doctype.program_enrollment_tool.program_enrollment_tool.enroll_students \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"students": [
{
"student": "EDU-STU-2025-00001",
"student_name": "Juan Pérez"
},
{
"student": "EDU-STU-2025-00002",
"student_name": "María García"
}
],
"program": "Computer Science",
"academic_year": "2024-2025",
"academic_term": "First Semester 2024-2025"
}
'