Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions api/openapi-spec/v0.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,31 @@ paths:
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
/me/changePassword:
post:
tags:
- me.changepassword
summary: Chanage your own password
operationId: ChangeOwnPassword
requestBody:
description: Password change request
content:
application/json:
schema:
title: Password change
type: object
properties:
currentPassword:
type: string
newPassword:
type: string
required: true
responses:
'204':
description: Success
default:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
/me/drives:
get:
tags:
Expand Down