University of Warsaw Profile API

The Profile API from University of Warsaw — 32 operation(s) for profile.

Operations 45

GET /api/v1/Profile/{id} Czytanie profilu z podanym id #
PUT /api/v1/Profile/{id} Aktualizacja profilu #
DELETE /api/v1/Profile/{id} Usuwanie profilu bez powiązanych relacji. #
GET /api/v1/Profile/{id}/ScienceDiscipline Czytanie listy powiązanych dyscyplin naukowych #
PUT /api/v1/Profile/{id}/ScienceDiscipline Dodawanie dyscyplin naukowych do profilu #
GET /api/v1/Profile/{id}/ScienceDisciplineDetails Czytanie informacji powiązanych z dyscyplinami naukowymi #
PUT /api/v1/Profile/{id}/ScienceDisciplineDetails Aktualizacja informacji powiązanych z dyscyplinami naukowymi #
PUT /api/v1/Profile/{id}/ScienceDiscipline/{profileScienceDisciplineId} Aktualizacja dyscyplin naukowych w profilu #
DELETE /api/v1/Profile/{id}/ScienceDiscipline/{profileScienceDisciplineId} Usunięcie dyscypliny naukowej profilu #
PUT /api/v1/Profile/{id}/ProfileUnit/{profileUnitId} Aktualizacja jednostki profilu #
DELETE /api/v1/Profile/{id}/ProfileUnit/{profileUnitId} Usunięcie jednostki profilu #
PUT /api/v1/Profile/{id}/ProfileDegree/{profileDegreeId} Aktualizacja profilu stopnie i tytuły #
DELETE /api/v1/Profile/{id}/ProfileDegree/{profileDegreeId} Usunięcie profilu - stopnie i tytuły naukowe #
GET /api/v1/Profile/{id}/Article Czytanie artykułu do profilu #
PUT /api/v1/Profile/{id}/Article Dodawanie/aktualizacja artykułu do profilu #
PUT /api/v1/Profile/ByPerson/{personId}/orcid Aktualizacja orcid w profilu na podstawie personId #
GET /api/v1/Profile Listowanie danych o profilach niezależnie od pola is_publicly_visible #
POST /api/v1/Profile Dodawanie profilu #
POST /api/v1/Profile/{id}/assignPerson Przypisywanie osoby (tożsamości) do profilu #
GET /api/v1/Profile/{id}/ProfileUnit Listowanie danych jednostkach profilu #
POST /api/v1/Profile/{id}/ProfileUnit Dodawanie jednostki profilu #
GET /api/v1/Profile/{id}/ProfileDegree Listowanie danych o stopniach i tytułach dla podanego profileId #
POST /api/v1/Profile/{id}/ProfileDegree Dodawanie profilu stopnie i tytuły #
POST /api/v1/Profile/Merge Łączenie profili #
GET /api/v1/Profile/{id}/Publication Czytanie listy publikacji, których autorem jest wybrany profil #
GET /api/v1/Profile/{id}/ProposedKeywords Zwraca słowa kluczowe z rejestrów powiązanych z profilem #
GET /api/v1/Profile/{id}/Project Czytanie listy projektów, w których członkiem jest wybrany profil #
GET /api/v1/Profile/{id}/ProfileRelation Listowanie danych o profilach powiązanych z danym profilem #
GET /api/v1/Profile/{id}/Patent Czytanie listy patentów, których autorem jest wybrany profil #
GET /api/v1/Profile/{id}/History Czytanie historii zmian profilu #
GET /api/v1/Profile/{id}/Courses Czytanie listy kursów, powiązanych z wybranym #
GET /api/v1/Profile/SearchProfile Search profile #
GET /api/v1/Profile/SearchProfile('{profileId}') Get search profile #
GET /api/v1/Profile/SearchPerson Listowanie danych o osobach #
GET /api/v1/Profile/SearchPerson('{personId}') Czytanie informacji o osobie #
GET /api/v1/Profile/FindOrcidByPersonId/{personId} Get profile orcid #
GET /api/v1/Profile/BusinessEntities Listowanie podmiotów #
GET /api/v1/Profile/All Listowanie danych o profilach #
DELETE /api/v1/Profile/{id}/removePerson Usuwanie powiązania profilu z osobą #
DELETE /api/v1/Profile/{id}/Picture Remove profile picture #
DELETE /api/v1/Profile/{id}/Article/Remove Usunięcie artykułu dla profilu #

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-profile-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-profile-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: University Of Warsaw Profile API
  version: '1.0'
  description: 'Operations tagged Profile 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: Profile
paths:
  /api/v1/Profile/{id}:
    get:
      tags:
      - Profile
      summary: Czytanie profilu z podanym id
      operationId: getProfileById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    put:
      tags:
      - Profile
      summary: Aktualizacja profilu
      operationId: updateProfile
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Profile
      summary: Usuwanie profilu bez powiązanych relacji.
      operationId: removeProfile
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ScienceDiscipline:
    get:
      tags:
      - Profile
      summary: Czytanie listy powiązanych dyscyplin naukowych
      operationId: getProfileScienceDisciplines
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileScienceDisciplineResponse'
      security:
      - Authorization: []
    put:
      tags:
      - Profile
      summary: Dodawanie dyscyplin naukowych do profilu
      operationId: addProfileScienceDiscipline
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileScienceDisciplineRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileScienceDisciplineResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ScienceDisciplineDetails:
    get:
      tags:
      - Profile
      summary: Czytanie informacji powiązanych z dyscyplinami naukowymi
      operationId: getProfileScienceDisciplinesDetails
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileScienceDisciplineDetailsResponse'
      security:
      - Authorization: []
    put:
      tags:
      - Profile
      summary: Aktualizacja informacji powiązanych z dyscyplinami naukowymi
      operationId: updateProfileScienceDisciplinesDetails
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileScienceDisciplineDetailsRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileScienceDisciplineDetailsResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ScienceDiscipline/{profileScienceDisciplineId}:
    put:
      tags:
      - Profile
      summary: Aktualizacja dyscyplin naukowych w profilu
      operationId: updateProfileScienceDiscipline
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: profileScienceDisciplineId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileScienceDisciplineRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileScienceDisciplineResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Profile
      summary: Usunięcie dyscypliny naukowej profilu
      operationId: removeProfileScienceDiscipline
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: profileScienceDisciplineId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ProfileUnit/{profileUnitId}:
    put:
      tags:
      - Profile
      summary: Aktualizacja jednostki profilu
      operationId: updateProfileUnit
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: profileUnitId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileUnitRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileUnitResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Profile
      summary: Usunięcie jednostki profilu
      operationId: removeProfileUnit
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: profileUnitId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ProfileDegree/{profileDegreeId}:
    put:
      tags:
      - Profile
      summary: Aktualizacja profilu stopnie i tytuły
      operationId: updateProfileDegree
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: profileDegreeId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileDegreeRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileDegreeResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Profile
      summary: Usunięcie profilu - stopnie i tytuły naukowe
      operationId: removeProfileDegree
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: profileDegreeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ExternalLink/{externalLinkId}:
    put:
      tags:
      - Profile
      summary: Aktualizacja linków do aplikacji zewnętrznej
      operationId: updateExternalLink
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: externalLinkId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExternalLinkRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ExternalLinkResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Profile
      summary: Usunięcie linków do aplikacji zewnętrznych
      operationId: removeExternalLink
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: externalLinkId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/Article:
    get:
      tags:
      - Profile
      summary: Czytanie artykułu do profilu
      operationId: getProfileArticle
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ArticlePreviewResponse'
      security:
      - Authorization: []
    put:
      tags:
      - Profile
      summary: Dodawanie/aktualizacja artykułu do profilu
      operationId: upsertProfileArticle
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ArticlePreviewResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/ByPerson/{personId}/orcid:
    put:
      tags:
      - Profile
      summary: Aktualizacja orcid w profilu na podstawie personId
      operationId: updateOrcidByPersonId
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileOrcidRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile:
    get:
      tags:
      - Profile
      summary: Listowanie danych o profilach niezależnie od pola is_publicly_visible
      operationId: queryForProfile
      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: firstName,middleNames,lastName
      - name: $filter
        in: query
        required: false
        schema:
          type: string
          default: ()
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponseQueryProfileItemResponse'
      security:
      - Authorization: []
    post:
      tags:
      - Profile
      summary: Dodawanie profilu
      operationId: addProfile
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/assignPerson:
    post:
      tags:
      - Profile
      summary: Przypisywanie osoby (tożsamości) do profilu
      operationId: assignPerson
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfilePersonRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ProfileUnit:
    get:
      tags:
      - Profile
      summary: Listowanie danych jednostkach profilu
      operationId: getProfileUnits
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileUnitResponse'
      security:
      - Authorization: []
    post:
      tags:
      - Profile
      summary: Dodawanie jednostki profilu
      operationId: addProfileUnit
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileUnitRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileUnitResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ProfileDegree:
    get:
      tags:
      - Profile
      summary: Listowanie danych o stopniach i tytułach dla podanego profileId
      operationId: queryForProfileDegrees
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileDegreeResponse'
      security:
      - Authorization: []
    post:
      tags:
      - Profile
      summary: Dodawanie profilu stopnie i tytuły
      operationId: addProfileDegree
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileDegreeRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileDegreeResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ExternalLink:
    get:
      tags:
      - Profile
      summary: Czytanie listy linków linków do aplikacji zewnętrznych
      operationId: getExternalLink
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalLinkResponse'
      security:
      - Authorization: []
    post:
      tags:
      - Profile
      summary: Dodawanie linków do aplikacji zewnętrznych
      operationId: addExternalLink
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExternalLinkRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ExternalLinkResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/Merge:
    post:
      tags:
      - Profile
      summary: Łączenie profili
      operationId: mergeProfiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileMergeRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/Publication:
    get:
      tags:
      - Profile
      summary: Czytanie listy publikacji, których autorem jest wybrany profil
      description: 'Czytanie listy publikacji, których autorem jest wybrany profil.


        Filtry:

        * role

        - gdy brak -> zwraca wszystkie publikacje niezależnie od roli'
      operationId: getProfilePublicationById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: role
        in: query
        required: false
        schema:
          type: string
          enum:
          - AUTHOR
          - SUPERVISOR
          - EDITOR
          - TRANSLATOR
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfilePublicationResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ProposedKeywords:
    get:
      tags:
      - Profile
      summary: Zwraca słowa kluczowe z rejestrów powiązanych z profilem
      operationId: findAllKeywordsForProfile
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/Project:
    get:
      tags:
      - Profile
      summary: Czytanie listy projektów, w których członkiem jest wybrany profil
      operationId: getProfileProjectAuthorById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileProjectResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/ProfileRelation:
    get:
      tags:
      - Profile
      summary: Listowanie danych o profilach powiązanych z danym profilem
      operationId: getProfileRelations
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileRelationResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/Patent:
    get:
      tags:
      - Profile
      summary: Czytanie listy patentów, których autorem jest wybrany profil
      operationId: getProfilePatentAuthorById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfilePatentResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/History:
    get:
      tags:
      - Profile
      summary: Czytanie historii zmian profilu
      operationId: getProjectHistory_1
      parameters:
      - name: id
        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/Profile/{id}/Courses:
    get:
      tags:
      - Profile
      summary: Czytanie listy kursów, powiązanych z wybranym
      operationId: getProfileCoursesById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileCourseResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/SearchProfile:
    get:
      tags:
      - Profile
      operationId: searchProfile
      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/OdataResponseQueryProfileItemResponse'
      security:
      - Authorization: []
      summary: Search profile
      x-summary-source: derived
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/SearchProfile('{profileId}'):
    get:
      tags:
      - Profile
      operationId: getSearchProfile
      parameters:
      - name: profileId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
      summary: Get search profile
      x-summary-source: derived
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/SearchPerson:
    get:
      tags:
      - Profile
      summary: Listowanie danych o osobach
      operationId: searchPersonForProfile
      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
      - name: hasProfile
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponsePersonViewResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/SearchPerson('{personId}'):
    get:
      tags:
      - Profile
      summary: Czytanie informacji o osobie
      operationId: getSearchPersonForProfile
      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/Profile/FindOrcidByPersonId/{personId}:
    get:
      tags:
      - Profile
      operationId: getProfileOrcid
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileOrcidResponse'
      security:
      - Authorization: []
      summary: Get profile orcid
      x-summary-source: derived
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/BusinessEntities:
    get:
      tags:
      - Profile
      summary: Listowanie podmiotów
      operationId: getBusinessEntitiesForProfile
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BusinessEntityResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/All:
    get:
      tags:
      - Profile
      summary: Listowanie danych o profilach
      operationId: findAllProfiles
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QueryProfileItemResponse'
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/removePerson:
    delete:
      tags:
      - Profile
      summary: Usuwanie powiązania profilu z osobą
      operationId: removePerson
      parameters:
      - name: id
        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/Profile/{id}/Picture:
    delete:
      tags:
      - Profile
      operationId: removeProfilePicture
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Remove profile picture
      x-summary-source: derived
    servers:
    - url: https://api.jaskier.uw.edu.pl
  /api/v1/Profile/{id}/Article/Remove:
    delete:
      tags:
      - Profile
      summary: Usunięcie artykułu dla profilu
      operationId: removeProfileArticle
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
    servers:
    - url: https://api.jaskier.uw.edu.pl
components:
  schemas:
    ProfileRelationResponse:
      type: object
      properties:
        profileId:
          type: string
        profileName:
          type: string
        profileFirstName:
          type: string
        profileMiddleNames:
          type: string
        profileLastName:
          type: string
        profileEmail:
          type: string
        courses:
          type: integer
          format: int32
        projects:
          type: integer
          format: int32
        publications:
          type: integer
          format: int32
        scienceDisciplines:
          type: integer
          format: int32
        units:
          type: integer
          format: int32
    ExternalLinkResponse:
      type: object
      properties:
        id:
          type: string
        profileId:
          type: string
        url:
          type: string
        name:
          type: string
        orderIndex:
          type: integer
          format: int32
    ProfileRequest:
      required:
      - cfKeyw
      - emailsOther
      - name
      - roles
      type: object
      properties:
        name:
          type: string
        firstName:
          type: string
        middleNames:
          type: string
        lastName:
          type: string
        emailsOther:
          uniqueItems: true
          type: array
          items:
            type: string
        email:
          type: string
        phone:
          type: string
        orcid:
          type: string
        uidPolon:
          type: string
        uidPolonStud:
          type: string
        uidPolonDokt:
          type: string
        pbnId:
          type: string
        scopusId:
          type: string
        degree:
          type: string
        cfKeyw:
          uniqueItems: true
          type: array
          items:
            type: string
        roles:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - STUDENT
            - STAFF
            - FACULTY
            - IT
            - GUEST
        isPubliclyVisible:
          type: boolean
    ProfileDegreeResponse:
      type: object
      properties:
        id:
          type: string
        profileId:
          type: string
        degreeName:
          type: string
        grantedDate:
          type: string
          format: date
        grantedById:
          type: string
        grantedByName:
          type: string
        grantedByAcro:
          type: string
        grantedByIsHigherEducation:
          type: boolean
        scienceDisciplineCode:
          type: string
        scienceFieldCode:
          type: string
        scienceDisciplineName:
          type: str

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