openapi: 3.0.3 info: title: KU Leuven Research Data Repository (RDR) Access Pids API description: Dataverse-based institutional research data repository API for KU Leuven (rdr.kuleuven.be), running Dataverse 6.7.1. Public info endpoints are reachable without authentication; write operations require an API token, a registered ORCID, and the Dataset Creator role. version: 6.7.1 servers: - url: https://rdr.kuleuven.be/api description: KU Leuven Research Data Repository (RDR) production API tags: - name: Pids paths: /pids: get: operationId: Pids_getPid parameters: - name: persistentId in: query schema: type: string responses: '200': description: OK tags: - Pids /pids/providers: get: operationId: Pids_getPidProviders responses: '200': description: OK tags: - Pids /pids/providers/{persistentId}: get: operationId: Pids_getPidProviderId parameters: - name: persistentId in: path required: true schema: pattern: .+ type: string responses: '200': description: OK tags: - Pids /pids/unreserved: get: operationId: Pids_getUnreserved parameters: - name: persistentId in: query schema: type: string responses: '200': description: OK tags: - Pids /pids/{id}/delete: delete: operationId: Pids_deletePid parameters: - name: id in: path required: true schema: type: string responses: '200': description: OK tags: - Pids /pids/{id}/reserve: post: operationId: Pids_reservePid parameters: - name: id in: path required: true schema: type: string responses: '200': description: OK tags: - Pids