Skip to main content
POST
/
v2.0
/
working-leads
/
add
Batch add leads to Sales Agent working pool
curl --request POST \
  --url https://api.lofty.com/v2.0/working-leads/add \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "leadIds": [
    563172647619608,
    563172647619609
  ],
  "createPlanTask": false
}
'
{
  "message": "Operation successful"
}

Documentation Index

Fetch the complete documentation index at: https://developer.lofty.com/llms.txt

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

Headers

Authorization
string
required

Bearer [access_token]

Content-Type
string
required

application/json

Body

application/json

Batch add working lead request

leadIds
integer<int64>[]
required

Lead IDs to add to Sales Agent working pool (max 100)

Example:
[563172647619608, 563172647619609]
createPlanTask
boolean
default:false

Whether to create plan tasks for each lead after adding to working pool

Example:

false

Response

Batch operation completed (may include partial failures)

Generic message response

message
string

Result message

Example:

"Operation successful"