POST api/admin/ChangeAdminPassword
Request Information
URI Parameters
None.
Body Parameters
ChangePasswordDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| ServiceNumber | string |
None. |
|
| PBXUserID | string |
None. |
|
| Password | string |
None. |
|
| EmulatorUsername | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"ServiceNumber": "sample string 2",
"PBXUserID": "sample string 3",
"Password": "sample string 4",
"EmulatorUsername": "sample string 5"
}
application/xml, text/xml
Sample:
<ChangePasswordDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSPApi.DTO"> <EmulatorUsername>sample string 5</EmulatorUsername> <PBXUserID>sample string 3</PBXUserID> <Password>sample string 4</Password> <ServiceNumber>sample string 2</ServiceNumber> <UserID>1</UserID> </ChangePasswordDTO>
application/x-www-form-urlencoded
Sample:
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. |