ex_heroku_client v0.1.0 Heroku.PasswordReset

Summary

Functions

Calls POST /password-resets

Calls POST /password-resets/#{password-reset_reset_password_token}/actions/finalize

Functions

post_1(params \\ %{})

Calls POST /password-resets

params is JSON encoded and passed as the request body.

params Schema

{
  "properties": {
    "email": {
      "description": "unique email address of account",
      "example": "username@example.com",
      "format": "email",
      "readOnly": false,
      "type": [
        "string"
      ]
    }
  },
  "type": [
    "object"
  ]
}
post_2(password-reset_reset_password_token, params \\ %{})

Calls POST /password-resets/#{password-reset_reset_password_token}/actions/finalize

params is JSON encoded and passed as the request body.

params Schema

{
  "properties": {
    "password": {
      "description": "current password on the account",
      "example": "currentpassword",
      "readOnly": true,
      "type": [
        "string"
      ]
    },
    "password_confirmation": {
      "description": "confirmation of the new password",
      "example": "newpassword",
      "readOnly": true,
      "type": [
        "string"
      ]
    }
  },
  "type": [
    "object"
  ]
}