Skip to main content
POST
/
resource
/
Instructor
Crear Instructor (Sin Employee)
curl --request POST \
  --url https://cucuniversity.edtools.co/api/resource/Instructor \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "instructor_name": "Dr. Juan Martínez",
  "gender": "Male",
  "department": "Computer Science",
  "status": "Active"
}
'

Authorizations

Authorization
string
header
required

Body

application/json

instructor_name
string
required
gender
string
required
department
string
required
status
string
required

Response

200

Respuesta exitosa del servidor.