openapi: 3.0.0 info: title: NYCU Dataverse Native & Search Access Builtin Users API description: OpenAPI description served by the National Yang Ming Chiao Tung University (NYCU) Dataverse research-data repository (Dataverse Project v5.10.1) at https://dataverse.lib.nycu.edu.tw. Captured unmodified from the live /openapi endpoint; only the servers and info blocks were adjusted to point at the public base URL. version: 5.10.1 servers: - url: https://dataverse.lib.nycu.edu.tw description: NYCU Dataverse production instance. tags: - name: Builtin Users paths: /api/v1/builtin-users: post: operationId: save parameters: - name: password in: query schema: type: string - name: key in: query schema: type: string - name: sendEmailNotification in: query schema: type: boolean requestBody: content: '*/*': schema: $ref: '#/components/schemas/BuiltinUser' responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Builtin Users /api/v1/builtin-users/{password}/{key}: post: operationId: create parameters: - name: password in: path required: true schema: type: string - name: key in: path required: true schema: type: string requestBody: content: '*/*': schema: $ref: '#/components/schemas/BuiltinUser' responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Builtin Users /api/v1/builtin-users/{password}/{key}/{sendEmailNotification}: post: operationId: create parameters: - name: password in: path required: true schema: type: string - name: key in: path required: true schema: type: string - name: sendEmailNotification in: path required: true schema: type: boolean requestBody: content: '*/*': schema: $ref: '#/components/schemas/BuiltinUser' responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Builtin Users /api/v1/builtin-users/{username}/api-token: get: operationId: getApiToken parameters: - name: username in: path required: true schema: type: string - name: password in: query schema: type: string responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Builtin Users components: schemas: PasswordResetData: type: object properties: id: type: number token: type: string builtinUser: $ref: '#/components/schemas/BuiltinUser' created: {} expires: {} reason: $ref: '#/components/schemas/Reason' Reason: enum: - Ingest - Workflow - InReview - DcmUpload - finalizePublication - EditInProgress - FileValidationFailed BuiltinUser: type: object properties: id: type: number userName: type: string passwordEncryptionVersion: type: integer passwordResetData: $ref: '#/components/schemas/PasswordResetData' encryptedPassword: type: string email: type: string firstName: type: string lastName: type: string affiliation: type: string position: type: string