Update a university

PUT /universities/{id}

Path parameters

  • id string Required
application/json

Body Required

  • name string
  • identifier string
  • short_name string

Responses

  • 200 application/json

    University updated successfully

    Hide response attributes Show response attributes object
    • name string
    • identifier string
    • short_name string
PUT /universities/{id}
curl \
 -X PUT https://api.wei.co.mz/universities/{id} \
 -H "Content-Type: application/json" \
 -d '{"name":"string","identifier":"string","short_name":"string"}'
Request example
{
  "name": "string",
  "identifier": "string",
  "short_name": "string"
}
Request examples
{
  "name": "string",
  "identifier": "string",
  "short_name": "string"
}
Response examples (200)
{
  "name": "string",
  "identifier": "string",
  "short_name": "string"
}
Response examples (200)
{
  "name": "string",
  "identifier": "string",
  "short_name": "string"
}