curl --location --request POST '/api/v1/admin/bootcamps/add' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "string",
"brochure": {
"mimetype": "string",
"base64": "string"
},
"startDate": "string",
"endDate": "string",
"isActive": true,
"members": [
{
"fullName": "string",
"profile": {
"mimetype": "string",
"base64": "string"
},
"bio": "string",
"roles": [
"string"
],
"linkedIn": "string"
}
]
}'{
"data": {
"message": "Success! the Bootcamp has been added successfully.",
"status": true,
"bootcamp": {
"title": "Cohort 1",
"brochure": "https://res.cloudinary.com/dzljyt3y1/image/upload/v1737299401/hhmsxnveh7pkgv0s3hhb.pdf",
"startDate": "2025-10-20",
"isActive": true,
"endDate": "2025-10-21",
"facultyMembers": [
{
"fullName": "Yahaya Abdullah Abu",
"linkedIn": "https://ng.linkedin.com/in/abdullah-yahaya-1212a7179",
"bio": "It is from here",
"roles": [
"Project Management",
"Time Management"
],
"profile": "https://res.cloudinary.com/dzljyt3y1/image/upload/v1737299410/profiles/Yahaya_Abdullah_Abu.png"
},
{
"fullName": "Yahaya Abdullah Abu",
"linkedIn": "https://ng.linkedin.com/in/abdullah-yahaya-1212a7179",
"bio": "It is from here",
"roles": [
"Project Management",
"Time Management"
],
"profile": "https://res.cloudinary.com/dzljyt3y1/image/upload/v1737299410/profiles/Yahaya_Abdullah_Abu.png"
}
],
"students": []
}
}
}