POST api/Employee/ChangePassword
社員のパスワードを変更します。
Request Information
URI Parameters
None.
Body Parameters
"BuilderId": 会社ID "EmployeeId" : 社員ID "CurrentPassword": 現在のパスワード "NewPassword": 新パスワード
EmployeeAPIChangePassword| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeId | integer |
None. |
|
| CurrentPassword | string |
None. |
|
| NewPassword | string |
None. |
|
| BuilderId | integer |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| CreatedById | integer |
None. |
|
| ModifiedById | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmployeeId": 1,
"CurrentPassword": "sample string 1",
"NewPassword": "sample string 2",
"BuilderId": 1,
"CreatedDate": "2025-12-10T05:48:03.2964605+00:00",
"ModifiedDate": "2025-12-10T05:48:03.2964605+00:00",
"CreatedById": 5,
"ModifiedById": 6
}
application/xml, text/xml
Sample:
<EmployeeAPIChangePassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uchinet.General.API.Data"> <BuilderId>1</BuilderId> <CreatedById>5</CreatedById> <CreatedDate>2025-12-10T05:48:03.2964605+00:00</CreatedDate> <ModifiedById>6</ModifiedById> <ModifiedDate>2025-12-10T05:48:03.2964605+00:00</ModifiedDate> <CurrentPassword>sample string 1</CurrentPassword> <EmployeeId>1</EmployeeId> <NewPassword>sample string 2</NewPassword> </EmployeeAPIChangePassword>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |