University of Warsaw Person Role API

The PersonRole API from University of Warsaw — 4 operation(s) for personrole.

Operations 6

GET /api/v1/PersonRole Find all #
POST /api/v1/PersonRole Upsert role #
DELETE /api/v1/PersonRole Delete role #
GET /api/v1/PersonRole/{id} Find all 1 #
GET /api/v1/PersonRole/SearchPerson Search person for course #
GET /api/v1/PersonRole/SearchPerson/{personId} Czytanie informacji o osobie #

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-personrole-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-personrole-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenAPI definition Person Role API
  version: v0
servers:
- url: https://api.sp4eu.uw.edu.pl
tags:
- name: PersonRole
paths:
  /api/v1/PersonRole:
    get:
      tags:
      - PersonRole
      operationId: findAll
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PersonRoleResponse'
      security:
      - Authorization: []
      summary: Find all
      x-summary-source: derived
    post:
      tags:
      - PersonRole
      operationId: upsertRole
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonRoleRequest'
        required: true
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Upsert role
      x-summary-source: derived
    delete:
      tags:
      - PersonRole
      operationId: deleteRole
      parameters:
      - name: id
        in: query
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Delete role
      x-summary-source: derived
  /api/v1/PersonRole/{id}:
    get:
      tags:
      - PersonRole
      operationId: findAll_1
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PersonRoleResponse'
      security:
      - Authorization: []
      summary: Find all 1
      x-summary-source: derived
  /api/v1/PersonRole/SearchPerson:
    get:
      tags:
      - PersonRole
      operationId: searchPersonForCourse
      parameters:
      - name: $skip
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      - name: $top
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 10
          maximum: 100
      - 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/OdataResponsePersonResponse'
      security:
      - Authorization: []
      summary: Search person for course
      x-summary-source: derived
  /api/v1/PersonRole/SearchPerson/{personId}:
    get:
      tags:
      - PersonRole
      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/PersonResponse'
      security:
      - Authorization: []
components:
  schemas:
    PersonResponse:
      type: object
      properties:
        personId:
          type: string
        university:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
        lastLoginTime:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
    OdataResponsePersonResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PersonResponse'
        totalCount:
          type: integer
          format: int32
    PersonRoleRequest:
      type: object
      properties:
        personId:
          type: string
        role:
          type: string
          enum:
          - ADMIN
          - COURSE_MANAGER
          - COURSE_CERTIFICATE_MANAGER
          - HOUSING_OPTIONS_MANAGER
          - MOBILITY_OPTIONS_MANAGER
          - TUTORIAL_MANAGER
          - PERSON_MANAGER
          - PERSON_ROLE_MANAGER
          - REGISTRATION_MANAGER
        university:
          type: string
          enum:
          - CUNI
          - UAH
          - SU
          - KU
          - UNIMI
          - UW
          - UNIGE
          - PARIS_2
      required:
      - personId
      - role
    PersonRoleResponse:
      type: object
      properties:
        id:
          type: integer
          format: int64
        personId:
          type: string
        role:
          type: string
          enum:
          - ADMIN
          - COURSE_MANAGER
          - COURSE_CERTIFICATE_MANAGER
          - HOUSING_OPTIONS_MANAGER
          - MOBILITY_OPTIONS_MANAGER
          - TUTORIAL_MANAGER
          - PERSON_MANAGER
          - PERSON_ROLE_MANAGER
          - REGISTRATION_MANAGER
        university:
          type: string
          enum:
          - CUNI
          - UAH
          - SU
          - KU
          - UNIMI
          - UW
          - UNIGE
          - PARIS_2
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header