Skip to main content
POST
/
v1
/
console
/
case-studies
/
{case_study_id}
/
students
/
upload
Bulk Upload Students To Case Study
curl --request POST \
  --url http://localhost:8000/v1/console/case-studies/{case_study_id}/students/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file'
{
  "data": {
    "failure_count": 123,
    "success_count": 123,
    "total_records_processed": 123,
    "errors": [
      {
        "reason": "<string>",
        "row": 123,
        "email": "<string>"
      }
    ]
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your JWT access token

Path Parameters

case_study_id
string
required

Body

multipart/form-data
file
file
required

Response

Successful Response

data
CaseStudyBulkAddStudentResponse · object
message
string | null
success
boolean
default:true