Skip to main content
POST
/
vendors
/
{vendorId}
/
reset-password
Reset vendor password
curl --request POST \
  --url https://www.renovationfind.com/rest-manager-api-v1/vendors/{vendorId}/reset-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "newPassword": "newSecurePassword123"
}
'
{
  "success": true,
  "data": "Password reset successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.renovationfind.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Path Parameters

vendorId
integer<int64>
required

Vendor ID

Body

application/json
newPassword
string
required

The new password for the vendor account

Response

Password reset successfully

success
boolean
Example:

true

message
string