University of Warsaw Person System Role API

The PersonSystemRole API from University of Warsaw — 10 operation(s) for personsystemrole.

Operations 13

GET /api/v1/PersonSystemRole Listowanie ról przypisanych do osób z paginacją #
POST /api/v1/PersonSystemRole Dodanie roli do osoby #
GET /api/v1/PersonSystemRole/{personSystemRoleId} Pobieranie ról przypisanych do osoby na podstawie id #
POST /api/v1/PersonSystemRole/{personSystemRoleId} Aktualizacja roli przypisanej do osoby #
DELETE /api/v1/PersonSystemRole/{personSystemRoleId} Usunięcie roli przypisanej do osoby #
POST /api/v1/PersonSystemRole/RoleCode/{roleCode}/Assign Przypisanie roli do rekordu #
POST /api/v1/PersonSystemRole/Convert/Selected Copy from organization role by person id #
POST /api/v1/PersonSystemRole/Convert/All Copy from organization role #
GET /api/v1/PersonSystemRole/SearchPerson Wyszukiwanie osoby #
GET /api/v1/PersonSystemRole/SearchPerson('{personId}') Czytanie informacji o osobie #
GET /api/v1/PersonSystemRole/RoleCode/{roleCode} Lista rekordów z daną rolą w dziale gospodarczym #
GET /api/v1/PersonSystemRole/All Listowanie ról przypisanych do osoby w zależności od typu systemu #
DELETE /api/v1/PersonSystemRole/RoleCode/{roleCode}/Unassign Odebranie roli #

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-personsystemrole-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-personsystemrole-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Person System Role API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: PersonSystemRole
paths:
  /api/v1/PersonSystemRole:
    get:
      tags:
      - PersonSystemRole
      summary: Listowanie ról przypisanych do osób z paginacją
      operationId: queryForPersonSystemRoles
      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: economicDepartmentCode,personId
      - name: $filter
        in: query
        required: false
        schema:
          type: string
          default: ()
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponsePersonSystemRoleResponse'
      security:
      - Authorization: []
    post:
      tags:
      - PersonSystemRole
      summary: Dodanie roli do osoby
      operationId: addPersonSystemRole
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonSystemRoleRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PersonSystemRoleResponse'
      security:
      - Authorization: []
  /api/v1/PersonSystemRole/{personSystemRoleId}:
    get:
      tags:
      - PersonSystemRole
      summary: Pobieranie ról przypisanych do osoby na podstawie id
      operationId: getPersonSystemRole
      parameters:
      - name: personSystemRoleId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PersonSystemRoleResponse'
      security:
      - Authorization: []
    post:
      tags:
      - PersonSystemRole
      summary: Aktualizacja roli przypisanej do osoby
      operationId: updatePersonSystemRole
      parameters:
      - name: personSystemRoleId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonSystemRoleRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PersonSystemRoleResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - PersonSystemRole
      summary: Usunięcie roli przypisanej do osoby
      operationId: removePersonSystemRole
      parameters:
      - name: personSystemRoleId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
  /api/v1/PersonSystemRole/RoleCode/{roleCode}/Assign:
    post:
      tags:
      - PersonSystemRole
      summary: Przypisanie roli do rekordu
      operationId: assignSystemRole
      parameters:
      - name: roleCode
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonRoleCodeRequest'
        required: true
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
  /api/v1/PersonSystemRole/Convert/Selected:
    post:
      tags:
      - PersonSystemRole
      description: Converts person system roles into person department permissions for selected persons. Returns errors list. If the operation is successful, an empty list is returned
      operationId: copyFromOrganizationRoleByPersonId
      requestBody:
        content:
          application/json:
            schema:
              uniqueItems: true
              type: array
              items:
                type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
      security:
      - Authorization: []
      summary: Copy from organization role by person id
      x-summary-source: derived
  /api/v1/PersonSystemRole/Convert/All:
    post:
      tags:
      - PersonSystemRole
      description: Converts person system roles into person department permissions for all persons. Returns errors list. If the operation is successful, an empty list is returned
      operationId: copyFromOrganizationRole
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
      security:
      - Authorization: []
      summary: Copy from organization role
      x-summary-source: derived
  /api/v1/PersonSystemRole/SearchPerson:
    get:
      tags:
      - PersonSystemRole
      summary: Wyszukiwanie osoby
      operationId: searchPersonForPersonSystemRole
      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: []
  /api/v1/PersonSystemRole/SearchPerson('{personId}'):
    get:
      tags:
      - PersonSystemRole
      summary: Czytanie informacji o osobie
      operationId: getSearchPersonForPersonSystemRole
      parameters:
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PersonViewResponse'
      security:
      - Authorization: []
  /api/v1/PersonSystemRole/RoleCode/{roleCode}:
    get:
      tags:
      - PersonSystemRole
      summary: Lista rekordów z daną rolą w dziale gospodarczym
      operationId: findAllForRole
      parameters:
      - name: roleCode
        in: path
        required: true
        schema:
          type: string
      - name: departmentCode
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PersonSystemRoleResponse'
      security:
      - Authorization: []
  /api/v1/PersonSystemRole/All:
    get:
      tags:
      - PersonSystemRole
      summary: Listowanie ról przypisanych do osoby w zależności od typu systemu
      operationId: queryForPersonSystemRolesAll
      parameters:
      - name: economicDepartments
        in: query
        required: false
        schema:
          uniqueItems: true
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PersonSystemRoleResponse'
      security:
      - Authorization: []
  /api/v1/PersonSystemRole/RoleCode/{roleCode}/Unassign:
    delete:
      tags:
      - PersonSystemRole
      summary: Odebranie roli
      operationId: unassignSystemRole
      parameters:
      - name: roleCode
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonRoleCodeRequest'
        required: true
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
components:
  schemas:
    OdataResponsePersonSystemRoleResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PersonSystemRoleResponse'
        totalCount:
          type: integer
          format: int32
    PersonViewResponse:
      type: object
      properties:
        personId:
          type: string
        university:
          type: string
          enum:
          - CUNI
          - UAH
          - SU
          - KU
          - UNIMI
          - UW
          - UNIGE
          - PARIS_2
        orcid:
          type: string
        firstName:
          type: string
        middleNames:
          type: string
        lastName:
          type: string
        email:
          type: string
        profileId:
          type: string
        degree:
          type: string
        universityIndexNumber:
          type: string
    PersonRoleCodeRequest:
      type: object
      properties:
        departmentCode:
          type: string
        personIds:
          type: array
          items:
            type: string
    OdataResponsePersonViewResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PersonViewResponse'
        totalCount:
          type: integer
          format: int32
    PersonSystemRoleResponse:
      type: object
      properties:
        id:
          type: string
        personId:
          type: string
        personFirstName:
          type: string
        personLastName:
          type: string
        personEmail:
          type: string
        personSapLogin:
          type: string
        economicDepartmentCode:
          type: string
        economicDepartmentNamePl:
          type: string
        economicDepartmentNameEn:
          type: string
        systemRoleCodes:
          type: array
          items:
            type: string
      description: Informacje o rolach osób
    PersonSystemRoleRequest:
      required:
      - personId
      - systemRoleCodes
      type: object
      properties:
        personId:
          type: string
        economicDepartmentCode:
          type: string
        systemRoleCodes:
          uniqueItems: true
          type: array
          items:
            type: string
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header