Crea un nuevo artículo.
curl --request POST \
--url https://cucuniversity.edtools.co/api/resource/Article \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Introduction to Data Structures",
"author": "Prof. John Smith",
"publish_date": "2025-01-15",
"content": "<h2>What are Data Structures?</h2><p>Data structures are ways of organizing and storing data...</p>",
"disable_comments": 0
}
'curl --request POST \
--url https://cucuniversity.edtools.co/api/resource/Article \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Introduction to Data Structures",
"author": "Prof. John Smith",
"publish_date": "2025-01-15",
"content": "<h2>What are Data Structures?</h2><p>Data structures are ways of organizing and storing data...</p>",
"disable_comments": 0
}
'