Skip to main content
POST
/
auth
/
forgot-password
Solicitar recuperação de senha
curl --request POST \
  --url https://dev.plugtopay.com/api/v1/auth/forgot-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "joao@example.com"
}
'
{
  "message": "Reset instructions sent.",
  "reset_token": "abc123...",
  "expires_in": "60 minutes"
}

Body

application/json
email
string<email>
required
Example:

"joao@example.com"

Response

200 - application/json

Instruções de reset enviadas.

message
string
required
Example:

"Reset instructions sent."

reset_token
string
Example:

"abc123..."

expires_in
string
Example:

"60 minutes"