Skip to main content
POST
/
general-leads
/
{id}
/
decline
Decline a lead
curl --request POST \
  --url https://www.renovationfind.com/rest-api-v1/general-leads/{id}/decline \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "Outside our service area"
}
'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Path Parameters

id
integer<int64>
required

Body

application/json
reason
string
required

Reason for declining the lead

Maximum string length: 500
Example:

"Outside our service area"

Response

Lead declined

success
boolean
Example:

true

message
string