PUT /api/v1/distinctions

PUT /api/v1/distinctions

Body

  • id integer(int32)
  • studentId integer(int32)
  • description string | null

Body

  • id integer(int32)
  • studentId integer(int32)
  • description string | null

Body

  • id integer(int32)
  • studentId integer(int32)
  • description string | null

Responses

  • 200

    OK

PUT /api/v1/distinctions
curl \
 --request PUT 'http://api.example.com/api/v1/distinctions' \
 --header "Content-Type: application/json" \
 --data '{"id":42,"studentId":42,"description":"string"}'
curl \
 --request PUT 'http://api.example.com/api/v1/distinctions' \
 --header "Content-Type: text/json"
curl \
 --request PUT 'http://api.example.com/api/v1/distinctions' \
 --header "Content-Type: application/*+json"
Request examples
{
  "id": 42,
  "studentId": 42,
  "description": "string"
}
Request examples
{
  "id": 42,
  "studentId": 42,
  "description": "string"
}
Request examples
{
  "id": 42,
  "studentId": 42,
  "description": "string"
}