curl --location --request POST '/education-materials' \
--header 'Authorization: Bearer <token>' \
--form 'name="Advanced Grammar Guide"' \
--form 'description="A comprehensive guide to advanced grammar rules."' \
--form 'locale="en"' \
--form 'videos=""' \
--form 'files=""'{
"isSuccess": true,
"statusCode": 201,
"data": {
"id": "string",
"name": "string",
"description": "string",
"pdfs": [
{
"url": "string",
"originalName": "string"
}
],
"videos": [
{
"url": "string",
"title": "string"
}
],
"locale": "tr",
"createdAt": "2019-08-24T14:15:22.123Z",
"updatedAt": "2019-08-24T14:15:22.123Z"
},
"errors": [
"Error messages..."
],
"timestamp": "2026-02-14T09:58:22.133Z"
}