Skip to main content
POST
/
lead
/
create
Create Lead
curl --request POST \
  --url https://api.plura.ai/v1/lead/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "record": {
    "phone": "5558675309",
    "first_name": "John",
    "last_name": "Doe"
  }
}
'
{
  "status": "success",
  "message": "Lead has been created.",
  "lead": {
    "phone": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "timezone": "America/New_York",
    "lead_id": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.plura.ai/llms.txt

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

Authorizations

Authorization
string
header
required

API key from Settings → API Keys in your workspace

Body

application/json
record
object
required

Response

Lead created successfully

status
string
Example:

"success"

message
string
Example:

"Lead has been created."

lead
object