POST /api/v1/distinctions

POST /api/v1/distinctions

Body

  • studentId integer(int32)
  • description string | null

Body

  • studentId integer(int32)
  • description string | null

Body

  • studentId integer(int32)
  • description string | null

Responses

  • 200

    OK

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