Skip to main content
POST
/
auth
/
reset-password
Reset password
curl --request POST \
  --url https://app.autoposting.ai/api-proxy/auth/reset-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "password": "SecurePass123!"
}
'
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Body

application/json
token
string
required

Reset token from the email link.

password
string
required

New password.

Example:

"SecurePass123!"

Response

200 - application/json

Password reset.

success
boolean
required
Example:

true

data
object
required