Skip to main content
POST
/
resource
/
Article
Crear Article
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
}
'

Authorizations

Authorization
string
header
required

Body

application/json

title
string
required
author
string
required
publish_date
string
required
content
string
required
disable_comments
integer<int32>
required

Response

200

Respuesta exitosa del servidor.