Edge Update Edge Admin Password

Edge Update Edge Admin Password

Requests an update to the Edge's local UI authentication credentials. On success, returns a JSON object with the ID of the action queued, the status of which can be queried using the edgeAction/getEdgeAction API.

Privileges required:

UPDATE EDGE

UPDATE ENTERPRISE_KEYS

Request
URI
POST
https://{api_host}/portal/rest/edge/updateEdgeAdminPassword
COPY
Request Body

Show optional properties

{
    "id": 0,
    "password": "string"
}
{
    "id": 0,
    "username": "string",
    "password": "string"
}
integer
id
Required

id

string
username
Optional

username

string
password
Required

password

Responses
200

Request was successfully processed

Returns edge_update_edge_admin_password_result of type(s) application/json
{
    "id": "string"
}
string
id
Required

The ID of the action queued


400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"id:"integer","password:"string"}' https://{api_host}/portal/rest/edge/updateEdgeAdminPassword