University of Warsaw Public Procurement Plan Migration API

The PublicProcurementPlanMigration API from University of Warsaw — 5 operation(s) for publicprocurementplanmigration.

Operations 5

PUT /api/v1/PublicProcurementPlan/Export/PublicProcurementPlansIds Eksport wybranych planów zamówień publicznych do pliku xlsx #
POST /api/v1/PublicProcurementPlan/ReadFromFile czytanie planów zamówień publicznych z pliku xls i xlsx #
POST /api/v1/PublicProcurementPlan/Import importowanie planu zamówień publicznych #
GET /api/v1/PublicProcurementPlan/Import/FileTemplate pobieranie szablonu pliku xlsx eksportu planów zamówień publicznych do pliku #
GET /api/v1/PublicProcurementPlan/Export Eksport planów zamówień publicznych do pliku xlsx #

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-publicprocurementplanmigration-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-publicprocurementplanmigration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Public Procurement Plan Migration API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: PublicProcurementPlanMigration
paths:
  /api/v1/PublicProcurementPlan/Export/PublicProcurementPlansIds:
    put:
      tags:
      - PublicProcurementPlanMigration
      summary: Eksport wybranych planów zamówień publicznych do pliku xlsx
      operationId: exportByPublicProcurementPlanIds
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicProcurementPlanExportRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
                format: binary
          x-is-file: 'true'
      security:
      - Authorization: []
  /api/v1/PublicProcurementPlan/ReadFromFile:
    post:
      tags:
      - PublicProcurementPlanMigration
      summary: czytanie planów zamówień publicznych z pliku xls i xlsx
      operationId: readPublicProcurementPlanFromXLSX
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - multipartFile
              type: object
              properties:
                multipartFile:
                  type: string
                  format: binary
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PublicProcurementPlanImportRequest'
      security:
      - Authorization: []
  /api/v1/PublicProcurementPlan/Import:
    post:
      tags:
      - PublicProcurementPlanMigration
      summary: importowanie planu zamówień publicznych
      operationId: importPublicProcurementPlan
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicProcurementPlanImportRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PublicProcurementPlanResponse'
      security:
      - Authorization: []
  /api/v1/PublicProcurementPlan/Import/FileTemplate:
    get:
      tags:
      - PublicProcurementPlanMigration
      summary: pobieranie szablonu pliku xlsx eksportu planów zamówień publicznych do pliku
      operationId: getPublicProcurementPlanFileTemplate
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
                format: binary
          x-is-file: 'true'
      security:
      - Authorization: []
  /api/v1/PublicProcurementPlan/Export:
    get:
      tags:
      - PublicProcurementPlanMigration
      summary: Eksport planów zamówień publicznych do pliku xlsx
      operationId: exportPublicProcurementPlan
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
                format: binary
          x-is-file: 'true'
      security:
      - Authorization: []
components:
  schemas:
    PublicProcurementPlanImportRequest:
      type: object
      properties:
        publicProcurementPlanId:
          type: string
        departmentCodes:
          type: array
          items:
            type: string
        realizedByDepartmentCode:
          type: string
        item:
          type: string
        type:
          type: string
        procedure:
          type: string
        number:
          type: string
        netAmountEstimate:
          type: number
        plannedStartYear:
          type: integer
          format: int32
        plannedStartQuarter:
          type: integer
          format: int32
        plannedStartMonth:
          type: integer
          format: int32
        responsiblePersonId:
          type: string
        reportingPersonId:
          type: string
        category:
          type: string
        cpvCodes:
          type: array
          items:
            type: string
    PublicProcurementPlanResponse:
      type: object
      properties:
        id:
          type: string
        item:
          type: string
        type:
          type: string
        legalBasisId:
          type: integer
          description: ID trybu zamówienia
          format: int32
        legalBasisName:
          type: string
          description: Tekstowa reprezentacja trybu zamówienia
        number:
          type: string
        netAmountEstimate:
          type: number
        plannedStartYear:
          type: integer
          format: int32
        plannedStartQuarter:
          type: integer
          format: int32
        plannedStartMonth:
          type: integer
          format: int32
        cpvCodes:
          type: array
          items:
            type: string
        departmentCodes:
          type: array
          items:
            type: string
        realizedByDepartmentCode:
          type: string
        responsiblePersonId:
          type: string
        responsiblePersonFirstName:
          type: string
        responsiblePersonLastName:
          type: string
        responsiblePersonEmail:
          type: string
        reportingPersonId:
          type: string
        reportingPersonFirstName:
          type: string
        reportingPersonLastName:
          type: string
        reportingPersonEmail:
          type: string
        categoryId:
          type: integer
          format: int32
        categoryGroup:
          type: string
        categorySubgroup:
          type: string
        categoryName:
          type: string
        categoryCpvCode:
          type: string
    PublicProcurementPlanExportRequest:
      type: object
      properties:
        publicProcurementPlanIds:
          uniqueItems: true
          type: array
          items:
            type: string
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header