Liveforce
  1. Leads API Overview
Liveforce
  • Introduction
  • Staff API Overview
    • List Staff Members
      GET
    • Get Staff Member Details
      GET
    • Create a Staff Member
      POST
    • Update a Staff Member
      PUT
  • Leads API Overview
    • List Leads
      GET
    • Get Lead Details
      GET
    • Leads Summary
      GET
    • Leads Count by Status
      GET
    • Leads Types
      GET
    • Lead Notes List
      GET
    • Lead Note Detail
      GET
    • Lead Notes Create
      POST
    • Lead Notes Update
      PUT
    • Lead Files
      GET
    • Upload Lead File
      POST
    • Generate Report
      GET
    • Generate CSV Report
      GET
  • Call Logs API Overview
    • List Call Logs
      GET
    • Get Call Log Detail
      GET
  • Tickets API Overview
    • List Tickets
      GET
    • Create a Ticket
      POST
    • Get Ticket Details
      GET
    • List Ticket Statuses
      GET
  • Deals Management API Overview
    • List Deals
      GET
    • Create a Deal
      POST
    • Update a Deal
      PUT
    • Get a Deal Details
      GET
    • List Deals Sources
      GET
    • List Deals Pipeline
      GET
    • Add a Deal Comment
      POST
    • Update a Deal Comment
      PUT
    • Add an Attachment
      POST
    • Delete an Attachment
      DELETE
    • List a Deal Services
      GET
    • Get a Deal Service Detail
      GET
    • Add a Deal Service
      POST
    • Update a Deal Service
      PUT
  1. Leads API Overview

Lead Notes Create

POST
/leads/note/create/{lead_id}
Creates a new note for a specific lead.

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/json
description
string 
required
Example
{
  "description": "lead notes"
}

Responses

🟢200Success
application/json
Body
data
object 
required
id
string 
required
rel_id
string 
required
rel_type
string 
required
description
string 
required
date_contacted
null 
required
addedfrom
string 
required
dateadded
string 
required
staff
string 
required
message
string 
required
Example
{
  "data": {
    "id": "1",
    "rel_id": "1",
    "rel_type": "lead",
    "description": "lead notes",
    "date_contacted": null,
    "addedfrom": "1",
    "dateadded": "2024-08-05 00:00:00",
    "staff": "john doe"
  },
  "message": "success"
}
🟠401Unauthorized
🟠422Validation
🟠404Not found
Modified at 2024-09-05 09:37:34
Previous
Lead Note Detail
Next
Lead Notes Update
Built with