University of Warsaw Person Profile API

The PersonProfile API from University of Warsaw — 4 operation(s) for personprofile.

Operations 6

GET /api/v1/MyUw/Person/{personId}/Profile Get person profile #
PUT /api/v1/MyUw/Person/{personId}/Profile Aktualizacja danych profilu osoby #
POST /api/v1/MyUw/Person/{personId}/Profile Dodawanie profilu osoby #
POST /api/v1/MyUw/Person/{personId}/Profile/Picture/Upload Operacja nadpisuje plik jeśli został wcześniej dodany #
GET /api/v1/MyUw/Person/{personId}/Profile/Picture/Download Download person profile picture #
DELETE /api/v1/MyUw/Person/{personId}/Profile/Picture Remove person profile picture #

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-personprofile-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-personprofile-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Person Profile API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: PersonProfile
paths:
  /api/v1/MyUw/Person/{personId}/Profile:
    get:
      tags:
      - PersonProfile
      operationId: getPersonProfile
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
      summary: Get person profile
      x-summary-source: derived
    put:
      tags:
      - PersonProfile
      summary: Aktualizacja danych profilu osoby
      operationId: updatePersonProfile
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonProfileRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
    post:
      tags:
      - PersonProfile
      summary: Dodawanie profilu osoby
      operationId: addPersonProfile
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
      - Authorization: []
  /api/v1/MyUw/Person/{personId}/Profile/Picture/Upload:
    post:
      tags:
      - PersonProfile
      summary: Operacja nadpisuje plik jeśli został wcześniej dodany
      operationId: uploadPersonProfilePicture
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - file
              type: object
              properties:
                file:
                  type: string
                  format: binary
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
  /api/v1/MyUw/Person/{personId}/Profile/Picture/Download:
    get:
      tags:
      - PersonProfile
      operationId: downloadPersonProfilePicture
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Download person profile picture
      x-summary-source: derived
  /api/v1/MyUw/Person/{personId}/Profile/Picture:
    delete:
      tags:
      - PersonProfile
      operationId: removePersonProfilePicture
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Remove person profile picture
      x-summary-source: derived
components:
  schemas:
    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
    PersonProfileRequest:
      required:
      - emails
      - name
      type: object
      properties:
        name:
          type: string
        firstName:
          type: string
        middleNames:
          type: string
        lastName:
          type: string
        emails:
          uniqueItems: true
          type: array
          items:
            type: string
        phone:
          type: string
        degree:
          type: string
        isPubliclyVisible:
          type: boolean
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header