Skip to main content
POST
/
general-leads
/
{id}
/
accept
Accept a lead
curl --request POST \
  --url https://www.renovationfind.com/rest-api-v1/general-leads/{id}/accept \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 123,
    "dateCreated": "2023-11-07T05:31:56Z",
    "dateModified": "2023-11-07T05:31:56Z",
    "actionDate": "2023-11-07T05:31:56Z",
    "category": "<string>",
    "customerName": "<string>",
    "customerEmail": "jsmith@example.com",
    "customerPhone": "<string>",
    "customerAddress": "<string>",
    "projectDetailsHtml": "<string>",
    "originalJobDescription": "<string>",
    "vendorNotificationViewed": true,
    "vendorLeadAction": "NONE",
    "declineReason": "<string>",
    "postLeadStatus": "NO_RESPONSE",
    "postLeadRequiresAction": true,
    "customerInformationHtml": "<string>",
    "postLeadStatusData": {
      "status": "NO_RESPONSE",
      "statusActionDate": "2023-11-07T05:31:56Z",
      "reason": "<string>",
      "meetupScheduledDate": "2023-11-07T05:31:56Z",
      "jobAmount": 123,
      "requiresAction": true
    },
    "attachments": [
      {
        "id": 123,
        "displayFilename": "<string>",
        "contentType": "<string>",
        "uploadDate": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Path Parameters

id
integer<int64>
required

Response

Lead accepted, returns updated details with customer contact info

success
boolean
Example:

true

data
object

Full detail view of a vendor-assigned lead. Includes all fields from the lite view plus post-lead status data and file attachments.