University of Warsaw Uw Economic Department API

The UwEconomicDepartment API from University of Warsaw — 3 operation(s) for uweconomicdepartment.

Operations 4

GET /api/v1/UwEconomicDepartment/{uwCode} Czytanie działu gospodarczego UW na podstawie kodu #
PATCH /api/v1/UwEconomicDepartment/{uwCode} Edycja działu gospodarczego z polami displayNamePl, displayNameEn, ksefId… #
GET /api/v1/UwEconomicDepartment Listowanie działów gospodarczych UW #
GET /api/v1/UwEconomicDepartment/DirectFromSap Listowanie działów gospodarczych z sapa #

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-uweconomicdepartment-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-uweconomicdepartment-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Uw Economic Department API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: UwEconomicDepartment
paths:
  /api/v1/UwEconomicDepartment/{uwCode}:
    get:
      tags:
      - UwEconomicDepartment
      summary: Czytanie działu gospodarczego UW na podstawie kodu
      operationId: getUwEconomicDepartmentByCode
      parameters:
      - name: uwCode
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/UwEconomicDepartmentResponse'
      security:
      - Authorization: []
    patch:
      tags:
      - UwEconomicDepartment
      summary: Edycja działu gospodarczego z polami displayNamePl, displayNameEn, ksefId…
      operationId: updateManualEconomicDepartment
      parameters:
      - name: uwCode
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UwEconomicDepartmentUpdateRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/UwEconomicDepartmentResponse'
      security:
      - Authorization: []
  /api/v1/UwEconomicDepartment:
    get:
      tags:
      - UwEconomicDepartment
      summary: Listowanie działów gospodarczych UW
      operationId: queryForUwEconomicDepartments
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UwEconomicDepartmentResponse'
      security:
      - Authorization: []
  /api/v1/UwEconomicDepartment/DirectFromSap:
    get:
      tags:
      - UwEconomicDepartment
      summary: Listowanie działów gospodarczych z sapa
      operationId: getEconomicDepartmentsDirectFromSap
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EconomicDepartmentDto'
      security:
      - Authorization: []
components:
  schemas:
    UwEconomicDepartmentResponse:
      type: object
      properties:
        uwCode:
          type: string
          description: Unikalny kod działu gospodarczego
        uwUnitCode:
          type: string
          description: Unikalny kod jednostki
        namePl:
          type: string
          description: Polska nazwa działu gospodarczego
        nameEn:
          type: string
          description: Angielska nazwa działu gospodarczego
        unitNamePl:
          type: string
          description: Polska nazwa jednostki
        unitNameEn:
          type: string
          description: Angielska nazwa jednostki
        internalKSeFIdentifier:
          type: string
          description: Identyfikator wewnętrzny KSeF
        invoiceEmail:
          type: string
          description: Faktura email
        displayNamePl:
          type: string
          description: Nazwa wyświetlana po polsku
        displayNameEn:
          type: string
          description: Nazwa wyświetlana po angielsku
      description: Dział gospodarczy UW
    EconomicDepartmentDto:
      type: object
      properties:
        Dzial:
          type: string
        OpisDzialuPl:
          type: string
        OpisDzialuEn:
          type: string
    UwEconomicDepartmentUpdateRequest:
      type: object
      properties:
        uwUnitCode:
          pattern: ^UW:.*$
          type: string
        internalKSeFIdentifier:
          type: string
        invoiceEmail:
          type: string
        displayNamePl:
          type: string
        displayNameEn:
          type: string
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header