Accounts-accountNumber-web-domainName-ssh-SshUsername:PUT
From Hostway API Documentation
Revision as of 13:16, 24 July 2015 by Mike.robski (Talk | contribs)
PUT /accounts/{accountNumber}/web/{domainName}/ssh
Update ssh account (change password).
Contents |
Request
PUT /accounts/{accountNumber}/web/{domainName}/ssh/{username}
URI Parameters
- accountNumber - string
- The user account of the web site owner
- domainName - string
- The domain name of the website
- username - string
- The username of the ssh account
Request Headers
- Authorization - HTTP Authorization header [1]
- The Authentication credentials of the client application.
Request Body
{ "password": "{password}" }
Parameters
- password - string
- The new password. Required.
Response
Status Code
- 204 No Content
- Success
- 401 Unauthorized
- The supplied credentials are invalid or do not provide permissions for this operation
- 403 Forbidden
- The authenticated user is not allowed to access this resource
Examples
Changing the password of an ssh account
Request
PUT /accounts/acct411359/web/ng-test-website1-20150305-0734.us/ssh/testssh053247 { "password": "someNewPw100" }
Response
204 No Content