openapi: 3.0.0 info: title: UChile Research Data Repository (Dataverse API) Access Users API version: 1.0.0 description: OpenAPI description served live from the University of Chile Dataverse research data repository at https://datos.uchile.cl (Dataverse v5.13, build 1244-79d6e57). Captured 2026-06-03 from https://datos.uchile.cl/openapi. The servers entry has been set to the real public base URL; internal default-server hostnames from the source document were replaced. All paths and schemas are reproduced as published by the deployment. servers: - url: https://datos.uchile.cl description: University of Chile Dataverse (production) tags: - name: Users paths: /api/v1/users/:me: get: operationId: getAuthenticatedUserByToken responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users /api/v1/users/token: delete: operationId: deleteToken responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users get: operationId: getTokenExpirationDate responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users /api/v1/users/token/recreate: post: operationId: recreateToken responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users /api/v1/users/{consumedIdentifier}/mergeIntoUser/{baseIdentifier}: post: operationId: mergeInAuthenticatedUser parameters: - name: consumedIdentifier in: path required: true schema: type: string - name: baseIdentifier in: path required: true schema: type: string responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users /api/v1/users/{identifier}/changeIdentifier/{newIdentifier}: post: operationId: changeAuthenticatedUserIdentifier parameters: - name: identifier in: path required: true schema: type: string - name: newIdentifier in: path required: true schema: type: string responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users /api/v1/users/{identifier}/removeRoles: post: operationId: removeUserRoles parameters: - name: identifier in: path required: true schema: type: string responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users /api/v1/users/{identifier}/traces: get: operationId: getTraces parameters: - name: identifier in: path required: true schema: type: string responses: default: content: '*/*': schema: type: object description: Default Response. tags: - Users /api/v1/users/{identifier}/traces/{element}: get: operationId: getTraces parameters: - name: identifier in: path required: true schema: type: string - name: element in: path required: true schema: type: string responses: default: description: Default Response. tags: - Users