University of Warsaw Course API

The Course API from University of Warsaw — 27 operation(s) for course.

Operations 35

GET /api/v1/Course/{courseId} Czytanie kursu z podanym id #
PUT /api/v1/Course/{courseId} Aktualizacja kursu #
PUT /api/v1/Course/{courseId}/RegistrationInfo/Assign Przypisywanie informacji o rejestracji. #
GET /api/v1/Course/{courseId}/Profile Lista osób (prowadzących) dla danego kursu #
PUT /api/v1/Course/{courseId}/Profile Dodawanie profilu do kursu #
GET /api/v1/Course/{courseId}/Abstract Lista abstraktów dla danego kursu #
PUT /api/v1/Course/{courseId}/Abstract Dodawanie abstraktu do kursu #
GET /api/v1/Course Listowanie danych o kursach (z paginacją - odata) #
POST /api/v1/Course Dodawanie kursu #
GET /api/v1/Course/{courseId}/Syllabus Czytanie sylabusa kursu #
POST /api/v1/Course/{courseId}/Syllabus Dodawanie sylabusa kursu #
POST /api/v1/Course/{courseId}/Syllabus/{courseSyllabusId} Aktualizacja sylabusa kursu #
DELETE /api/v1/Course/{courseId}/Syllabus/{courseSyllabusId} Usunięcie sylabusa kursu #
POST /api/v1/Course/{courseId}/Profile/{courseProfileId} Aktualizacja profilu dla kursu #
DELETE /api/v1/Course/{courseId}/Profile/{courseProfileId} Usunięcie powiązania profilu z kursem #
POST /api/v1/Course/{courseId}/AdditionalInfo Aktualizacja dodatkowych informacjami o kursie #
POST /api/v1/Course/{courseId}/Abstract/{cfAbstrId} Aktualizacja abstraktu dla kursu #
DELETE /api/v1/Course/{courseId}/Abstract/{cfAbstrId} Usunięcie abstraktu dla kursu #
GET /api/v1/Course/{courseId}/RegistrationInfo Czytanie informacji o rejestracji #
GET /api/v1/Course/{courseId}/History Czytanie historii zmian kursu #
GET /api/v1/Course/Years Zwraca listę lat dla kursów (lookup) #
GET /api/v1/Course/SearchProfile Wyszukiwanie profilu (np. w celu wpisania jako autora) #
GET /api/v1/Course/SearchProfile('{profileId}') Czytanie informacji o profilu #
GET /api/v1/Course/SearchPerson Wyszukiwanie osoby (np. w celu wpisania jako osoby prowadzącej kurs) #
GET /api/v1/Course/SearchPerson('{personId}') Czytanie informacji o osobie #
GET /api/v1/Course/SearchCourse Przeszukiwanie kursów #
GET /api/v1/Course/Removed Czytanie listy identyfikatorów usuniętych kursów #
GET /api/v1/Course/Faculties Zbiór istniejących wartości fakultetów #
GET /api/v1/Course/All Listowanie danych o kursach (bez paginacji) #
DELETE /api/v1/Course/{courseId}/Remove Usunięcie kursu #
DELETE /api/v1/Course/{courseId}/RegistrationInfo/Remove Usunięcie przypisania informacji o rejestracji. #
GET /api/v1/Course/{id} Pobranie danych o kursie o podanym id #
GET /api/v1/Course/{id}/Syllabus Pobranie danych o rejestracji kursu o podanym id #
GET /api/v1/Course/{id}/RegistrationInfo Pobranie informacji o rejestracji kursu o podanym id #
GET /api/v1/Course/{id}/Profile Pobranie profili instruktorów kursu o podanym id #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/university-of-warsaw-course-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

university-of-warsaw-course-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: University Of Warsaw Course API
  version: '1.0'
  description: 'Operations tagged Course across 2 of this provider''s published API definitions: university-of-warsaw-jaskier-api.json, university-of-warsaw-sp4eu-api.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.jaskier.uw.edu.pl
- url: https://api.sp4eu.uw.edu.pl
tags:
- name: Course
paths:
  /api/v1/Course/{courseId}:
    get:
      tags:
      - Course
      summary: Czytanie kursu z podanym id
      operationId: getCourseById
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseResponse'
      security:
      - Authorization: []
    put:
      tags:
      - Course
      summary: Aktualizacja kursu
      operationId: updateCourse_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CourseRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/RegistrationInfo/Assign:
    put:
      tags:
      - Course
      summary: Przypisywanie informacji o rejestracji.
      operationId: assignCourseRegistrationInfo_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CourseRegistrationInfoAssignRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseRegistrationInfoResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/Profile:
    get:
      tags:
      - Course
      summary: Lista osób (prowadzących) dla danego kursu
      operationId: getCourseProfiles
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CourseProfileResponse'
      security:
      - Authorization: []
    put:
      tags:
      - Course
      summary: Dodawanie profilu do kursu
      operationId: addCourseProfile
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CourseProfileRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseProfileResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/Abstract:
    get:
      tags:
      - Course
      summary: Lista abstraktów dla danego kursu
      operationId: getCourseAbstracts
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AbstractResponse'
      security:
      - Authorization: []
    put:
      tags:
      - Course
      summary: Dodawanie abstraktu do kursu
      operationId: addCourseAbstract_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AbstractRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AbstractResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course:
    get:
      tags:
      - Course
      summary: Listowanie danych o kursach (z paginacją - odata)
      operationId: queryForCourse
      parameters:
      - name: $skip
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      - name: $top
        in: query
        required: false
        schema:
          maximum: 1000
          type: integer
          format: int64
          default: 10
      - name: $inlinecount
        in: query
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        required: false
        schema:
          type: string
          default: creationTime desc
      - name: $filter
        in: query
        required: false
        schema:
          type: string
          default: ()
      - name: startDate4eu
        in: query
        required: false
        schema:
          type: string
          format: date
      - name: endDate4eu
        in: query
        required: false
        schema:
          type: string
          format: date
      - name: applicationDeadlineFrom
        in: query
        required: false
        schema:
          type: string
          format: date
      - name: applicationDeadlineTo
        in: query
        required: false
        schema:
          type: string
          format: date
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponseQueryCourseItemResponse'
      security:
      - Authorization: []
    post:
      tags:
      - Course
      summary: Dodawanie kursu
      operationId: addCourse_1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CourseRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/Syllabus:
    get:
      tags:
      - Course
      summary: Czytanie sylabusa kursu
      operationId: getCourseSyllabuses
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CourseSyllabusResponse'
      security:
      - Authorization: []
    post:
      tags:
      - Course
      summary: Dodawanie sylabusa kursu
      operationId: addCourseSyllabus_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CourseSyllabusRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseSyllabusResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/Syllabus/{courseSyllabusId}:
    post:
      tags:
      - Course
      summary: Aktualizacja sylabusa kursu
      operationId: updateCourseSyllabus_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: courseSyllabusId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CourseSyllabusRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseSyllabusResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Course
      summary: Usunięcie sylabusa kursu
      operationId: removeCourseSyllabus_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: courseSyllabusId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
                enum:
                - 100 CONTINUE
                - 101 SWITCHING_PROTOCOLS
                - 102 PROCESSING
                - 103 EARLY_HINTS
                - 103 CHECKPOINT
                - 200 OK
                - 201 CREATED
                - 202 ACCEPTED
                - 203 NON_AUTHORITATIVE_INFORMATION
                - 204 NO_CONTENT
                - 205 RESET_CONTENT
                - 206 PARTIAL_CONTENT
                - 207 MULTI_STATUS
                - 208 ALREADY_REPORTED
                - 226 IM_USED
                - 300 MULTIPLE_CHOICES
                - 301 MOVED_PERMANENTLY
                - 302 FOUND
                - 302 MOVED_TEMPORARILY
                - 303 SEE_OTHER
                - 304 NOT_MODIFIED
                - 305 USE_PROXY
                - 307 TEMPORARY_REDIRECT
                - 308 PERMANENT_REDIRECT
                - 400 BAD_REQUEST
                - 401 UNAUTHORIZED
                - 402 PAYMENT_REQUIRED
                - 403 FORBIDDEN
                - 404 NOT_FOUND
                - 405 METHOD_NOT_ALLOWED
                - 406 NOT_ACCEPTABLE
                - 407 PROXY_AUTHENTICATION_REQUIRED
                - 408 REQUEST_TIMEOUT
                - 409 CONFLICT
                - 410 GONE
                - 411 LENGTH_REQUIRED
                - 412 PRECONDITION_FAILED
                - 413 PAYLOAD_TOO_LARGE
                - 413 REQUEST_ENTITY_TOO_LARGE
                - 414 URI_TOO_LONG
                - 414 REQUEST_URI_TOO_LONG
                - 415 UNSUPPORTED_MEDIA_TYPE
                - 416 REQUESTED_RANGE_NOT_SATISFIABLE
                - 417 EXPECTATION_FAILED
                - 418 I_AM_A_TEAPOT
                - 419 INSUFFICIENT_SPACE_ON_RESOURCE
                - 420 METHOD_FAILURE
                - 421 DESTINATION_LOCKED
                - 422 UNPROCESSABLE_ENTITY
                - 423 LOCKED
                - 424 FAILED_DEPENDENCY
                - 425 TOO_EARLY
                - 426 UPGRADE_REQUIRED
                - 428 PRECONDITION_REQUIRED
                - 429 TOO_MANY_REQUESTS
                - 431 REQUEST_HEADER_FIELDS_TOO_LARGE
                - 451 UNAVAILABLE_FOR_LEGAL_REASONS
                - 500 INTERNAL_SERVER_ERROR
                - 501 NOT_IMPLEMENTED
                - 502 BAD_GATEWAY
                - 503 SERVICE_UNAVAILABLE
                - 504 GATEWAY_TIMEOUT
                - 505 HTTP_VERSION_NOT_SUPPORTED
                - 506 VARIANT_ALSO_NEGOTIATES
                - 507 INSUFFICIENT_STORAGE
                - 508 LOOP_DETECTED
                - 509 BANDWIDTH_LIMIT_EXCEEDED
                - 510 NOT_EXTENDED
                - 511 NETWORK_AUTHENTICATION_REQUIRED
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/Profile/{courseProfileId}:
    post:
      tags:
      - Course
      summary: Aktualizacja profilu dla kursu
      operationId: updateCourseProfile_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: courseProfileId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CourseProfileRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseProfileResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Course
      summary: Usunięcie powiązania profilu z kursem
      operationId: removeCourseProfile_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: courseProfileId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/AdditionalInfo:
    post:
      tags:
      - Course
      summary: Aktualizacja dodatkowych informacjami o kursie
      operationId: upsertCourseAdditionalInfo_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AdditionalInfoRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/Abstract/{cfAbstrId}:
    post:
      tags:
      - Course
      summary: Aktualizacja abstraktu dla kursu
      operationId: updateCourseAbstract_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: cfAbstrId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AbstractRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AbstractResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Course
      summary: Usunięcie abstraktu dla kursu
      operationId: removeCourseAbstract_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: cfAbstrId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/RegistrationInfo:
    get:
      tags:
      - Course
      summary: Czytanie informacji o rejestracji
      operationId: getCourseRegistrationInfo
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseRegistrationInfoResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/History:
    get:
      tags:
      - Course
      summary: Czytanie historii zmian kursu
      operationId: getCourseHistory
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HistoryResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/Years:
    get:
      tags:
      - Course
      summary: Zwraca listę lat dla kursów (lookup)
      operationId: queryCourseYearsLookup
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: integer
                  format: int32
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/SearchProfile:
    get:
      tags:
      - Course
      summary: Wyszukiwanie profilu (np. w celu wpisania jako autora)
      operationId: searchProfileForCourse
      parameters:
      - name: $skip
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      - name: $top
        in: query
        required: false
        schema:
          maximum: 100
          type: integer
          format: int64
          default: 10
      - name: $inlinecount
        in: query
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        required: false
        schema:
          type: string
          default: lastName,firstName,name
      - name: searchValue
        in: query
        required: false
        schema:
          type: string
          default: searchValue
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponseQueryProfileItemResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/SearchProfile('{profileId}'):
    get:
      tags:
      - Course
      summary: Czytanie informacji o profilu
      operationId: getSearchProfileForCourse
      parameters:
      - name: profileId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/SearchPerson:
    get:
      tags:
      - Course
      summary: Wyszukiwanie osoby (np. w celu wpisania jako osoby prowadzącej kurs)
      operationId: searchPersonForCourse
      parameters:
      - name: $skip
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      - name: $top
        in: query
        required: false
        schema:
          maximum: 100
          type: integer
          format: int64
          default: 10
      - name: $inlinecount
        in: query
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        required: false
        schema:
          type: string
          default: lastName,firstName,email
      - name: searchValue
        in: query
        required: false
        schema:
          type: string
          default: searchValue
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponsePersonViewResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/SearchPerson('{personId}'):
    get:
      tags:
      - Course
      summary: Czytanie informacji o osobie
      operationId: getSearchPersonForCourse
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PersonViewResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/SearchCourse:
    get:
      tags:
      - Course
      summary: Przeszukiwanie kursów
      operationId: searchCourse
      parameters:
      - name: $skip
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      - name: $top
        in: query
        required: false
        schema:
          maximum: 1000
          type: integer
          format: int64
          default: 10
      - name: $inlinecount
        in: query
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        required: false
        schema:
          type: string
          default: creationTime desc
      - name: searchValue
        in: query
        required: false
        schema:
          type: string
          default: searchValue
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponseQueryCourseItemResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/Removed:
    get:
      tags:
      - Course
      summary: Czytanie listy identyfikatorów usuniętych kursów
      operationId: getRemovedCoursesIds
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/Faculties:
    get:
      tags:
      - Course
      summary: Zbiór istniejących wartości fakultetów
      operationId: getExistingFaculties
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                uniqueItems: true
                type: array
                items:
                  type: string
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/All:
    get:
      tags:
      - Course
      summary: Listowanie danych o kursach (bez paginacji)
      description: 'Listowanie danych o kursach (bez paginacji)


        Filtry:

        * is4eu

        - gdy brak -> zwraca kursy niezależnie od tego czy są w ofercie 4eu

        - gdy true -> zwraca kursy w ofercie 4eu

        - gdy false -> zwraca kursy nie będące w ofercie 4eu

        * years

        - gdy brak -> zwraca kursy niezależnie od roku akademickiego

        - gdy years=2022,2021,null -> zwraca kursy z lat 2022,2021 + kursy bez zdefiniowanego roku akademickiego

        - gdy years=2022,2021 -> zwraca kursy z lat 2022,2021'
      operationId: queryForCourseWithoutPagination
      parameters:
      - name: is4eu
        in: query
        required: false
        schema:
          type: boolean
      - name: years
        in: query
        required: false
        schema:
          uniqueItems: true
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QueryCourseItemResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/Remove:
    delete:
      tags:
      - Course
      summary: Usunięcie kursu
      description: Usuwa kurs z istniejącymi relacjami. Wywołanie funkcji z opcją dryRun nie powoduje zmian w bazie danych. Zwraca listę relacji patentu
      operationId: removeCourses_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: dryRun
        in: query
        required: false
        schema:
          type: boolean
          default: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: object
                additionalProperties:
                  type: object
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{courseId}/RegistrationInfo/Remove:
    delete:
      tags:
      - Course
      summary: Usunięcie przypisania informacji o rejestracji.
      operationId: unassignCourseRegistrationInfo_1
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Course/{id}:
    get:
      tags:
      - Course
      summary: Pobranie danych o kursie o podanym id
      operationId: getCourseById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseSp4euResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.sp4eu.uw.edu.pl
  /api/v1/Course/{id}/Syllabus:
    get:
      tags:
      - Course
      summary: Pobranie danych o rejestracji kursu o podanym id
      operationId: getCourseSyllabus
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseSyllabusResponse_2'
      security:
      - Authorization: []
    servers:
    - url: https://api.sp4eu.uw.edu.pl
  /api/v1/Course/{id}/RegistrationInfo:
    get:
      tags:
      - Course
      summary: Pobranie informacji o rejestracji kursu o podanym id
      operationId: getCourseRegistrationInfo
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseRegistrationInfoResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.sp4eu.uw.edu.pl
  /api/v1/Course/{id}/Profile:
    get:
      tags:
      - Course
      summary: Pobranie profili instruktorów kursu o podanym id
      operationId: getCourseInstructors
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CourseProfileResponse_2'
      security:
      - Authorization: []
    servers:
    - url: https://api.sp4eu.uw.edu.pl
components:
  schemas:
    AbstractRequest:
      required:
      - keyw
      type: object
      properties:
        id:
          type: string
        langCode:
          type: string
          description: kod języka typu PL, EN, EN-GB, itp - klucz naturalny do Language, zgodny z ISO (patrz Language)
        title:
          type: string
          description: 'tytuł wynalazku/patentu/wzoru użytkowego/nazwa gatunku/nazwa botaniczna/nazwa odmiany w danym języku '
        abstr:
          type: string
          description: streszczenie opisu wynalazku/wzoru użytkowego w danym języku
        keyw:
          maxItems: 100
          minItems: 0
          uniqueItems: true
          type: array
          description: słowa kluczowe w danym języku
          items:
            type: string
            description: słowa kluczowe w danym języku
        orderIndex:
          minimum: 0
          type: integer
          description: 'kolejność wyświetlania abstraktów (domyślnie: 0)'
          format: int32
        original:
          type: boolean
          description: czy streszczenie jest w języku oryginału
    CourseSyllabusResponse:
      type: object
      properties:
        id:
          type: string
        courseId:
          type: string
          description: id kursu
        shortDescription:
          type: string
          description: opis kursu
        prerequirements:
          type: string
          description: opis wstępnych wymagań do kursu
        learningOutcomes:
          type: string
          description: opis efektów nauczania
        assessmentsInfo:
          type: string
          description: opis warunków zaliczenia
        lang:
          type: string
          description: kod języka
    ProfileResponse:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        firstName:
          type: string
        middleNames:
          type: string
        lastName:
          type: string
        email:
          type: string
        emailsOther:
          type: array
          items:
            type: string
        phone:
          type: string
        personId:
          type: string
        orcid:
          type: string
        uidPolon:
          type: string
        uidPolonStud:
          type: string
        uidPolonDokt:
          type: string
        pbnId:
          type: string
        scopusId:
          type: string
        degree:
          type: string
        cfKeyw:
          type: array
          items:
            type: string
        articleId:
          type: string
        scienceDisciplinesStatementDate:
          type: string
          format: date
        roles:
          type: array
          items:
            type: string
        isPubliclyVisible:
          type: boolean
        profilePublicId:
          type: string
    CourseSyllabusRequest:
      required:
      - lang
      type: object
      properties:
        shortDescription:
          type: string
          description: opis kursu
        prerequirements:
          type: string
          description: opis wstępnych wymagań do kursu
        learningOutcomes:
          type: string
          description: opis efektów nauczania
        assessmentsInfo:
          maxLength: 15000
          minLength: 0
          type: string
          description: opis warunków zaliczenia
        lang:
          type: string
          description: kod języka
    AbstractResponse:
      type: object
      properties:
        id:
          type: string
          description: Id abstraltu
        langCode:
          type: string
          description: kod języka typu PL, EN, EN-GB, itp - klucz naturalny do Language, zgodny z ISO (patrz Language)
        title:
          type: string
          description: 'tytuł wynalazku/patentu/wzoru użytkowego/nazwa gatunku/nazwa botaniczna/nazwa odmiany w danym języku '
        abstr:
          type: string
          description: streszczenie opisu wynalazku/wzoru użytkowego w danym języku
        keyw:
          type: array
          description: słowa kluczowe w danym języku
          items:
            type: string
            description: słowa kluczowe w danym języku
        orderIndex:
          type: integer
          description: 'kolejność wyświetlania abstraktów (domyślnie: 0)'
          format: int32
        objectId:
          type: string
          description: Id obiektu
        objectType:
          type: string
          description: Typ obiektu
        original:
          type: boolean
          description: czy streszczenie jest w języ

# --- truncated at 32 KB (61 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/university-of-warsaw/refs/heads/main/openapi/university-of-warsaw-course-api-openapi.yml