cURL
curl --request PATCH \ --url https://api.example.com/partner/partners/{partner_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "full_name": "<string>", "email": "jsmith@example.com", "phone": "<string>", "role": "<string>", "is_active": true } '
{ "org_id": 123, "full_name": "<string>", "email": "jsmith@example.com", "id": 123, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "phone": "<string>", "role": "partner", "is_active": true, "user_id": 123, "last_login_at": "2023-11-07T05:31:56Z" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
파트너(강사/어시스턴트) 수정용.
Successful Response