curl --location --request PATCH '/courses/' \
--header 'Authorization: Bearer <token>' \
--form 'locale="tr"' \
--form 'courseLanguage="English"' \
--form 'title="Başlangıç Kursu"' \
--form 'subtitle="Yeni başlayanlar için"' \
--form 'description="Detaylı açıklama..."' \
--form 'purchaseLink="https://example.com/buy"' \
--form 'image=@""' \
--form 'pdfs=""'{
"isSuccess": true,
"statusCode": 200,
"data": {
"id": "60d0fe4f5311236168a109ca",
"locale": "tr",
"courseLanguage": "English",
"title": "Başlık",
"subtitle": "Alt Başlık",
"description": "Açıklama",
"image": "https://example.com/image.jpg",
"pdfs": [
"https://example.com/file1.pdf"
],
"purchaseLink": "https://example.com/buy",
"createdAt": "2019-08-24T14:15:22.123Z",
"updatedAt": "2019-08-24T14:15:22.123Z"
},
"errors": [
"Error messages..."
],
"timestamp": "2026-02-14T09:58:22.121Z"
}