It seems like your browser didn't download the required fonts. Please revise your security settings and try again.
Barracuda Intronis Backup
formerly ECHOplatform

Partner Password Changer Controller

  • Last updated on

URI

/v1/partners/{username}/password

URI Parameters

  • username (string)

Methods

POST

POST /v1/partners/{username}/password

Changes a partner's password.

Scope

partners_write

Request Body Parameters

  • current_password (string) – the partner’s current password
  • new_password (string) – the new password to be saved to the partner

Response Attributes

  • n/a

Example JSON

Request:

POST /v1/partners/barracuda/password HTTP/1.1

Host: api.intronis.com

Authorization: OAuth vF9dft4qmT

Content-Type: application/json

{

  "current_password": "password",

  "new_password": "password1"

}

 

Response:

HTTP/1.1 204 No Content

Example XML

Request:

POST /v1/partners/barracuda/password HTTP/1.1

Host: api.intronis.com

Authorization: OAuth vF9dft4qmT

Content-Type: application/xml

 

<?xml version="1.0" encoding="UTF-8"?>

<password>

  <current_password>password</current_password>

  <new_password>password1</new_password>

</password>

 

Response:

HTTP/1.1 204 No Content