cURL
curl --request PATCH \ --url https://api.example.com/partner/{partner_id}/student/{student_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "full_name": "<string>", "email": "jsmith@example.com", "status": "active", "primary_contact": "<string>", "notes": "<string>", "user_id": 123 } '
{ "id": 123, "partner_id": 123, "full_name": "<string>", "status": "active", "joined_at": "2023-11-07T05:31:56Z", "email": "<string>", "primary_contact": "<string>", "notes": "<string>", "user_id": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
강사 ID
active
inactive
archived
Successful Response