POST api/Account/ChangePassword

Méthode permettant à un compte développeur de changer son Mot de passe

Informations sur la Requête

Paramètres dans l'URL

Aucune.

Paramètres dans le Body

ChangePasswordBindingModel
NonDescriptionTypeInformation complémentaire
OldPassword

string

Required

Data type: Password

NewPassword

string

Required

Data type: Password

String length: inclusive between 6 and 100

ConfirmPassword

string

Data type: Password

Format de la requête

application/json, text/json

Exemple :
{
  "OldPassword": "sample string 1",
  "NewPassword": "sample string 2",
  "ConfirmPassword": "sample string 3"
}

application/xml, text/xml

Exemple :
<ChangePasswordBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/test.Models">
  <ConfirmPassword>sample string 3</ConfirmPassword>
  <NewPassword>sample string 2</NewPassword>
  <OldPassword>sample string 1</OldPassword>
</ChangePasswordBindingModel>

Informations sur la Réponse

Descriptions des ressources

IHttpActionResult

Aucune.

Format de la Réponse

application/json, text/json, application/xml, text/xml

Exemple :

Exemple non disponible.