Skip to content

Update UserCredentials

David Ebbo edited this page Jul 18, 2015 · 6 revisions
  • Get user credential (note that the password is not included)
ARMClient.exe get /providers/Microsoft.Web/publishingUsers/web?api-version=2014-11-01
  • Update user credential
ARMClient.exe put /providers/Microsoft.Web/publishingUsers/web?api-version=2014-11-01 @payload.json

sample payload.json

{
  "properties": {
    "publishingUserName": "myUserName",
    "publishingPassword": "myPassword"
  }
}
Clone this wiki locally