Skip to main content
PUT
/
leads
/
{id}
Update lead
curl --request PUT \
  --url https://flozy-backend-1042419926531.us-central1.run.app/api/v1/external/leads/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "title": "Acme Corp (Renewed)",
  "status_name": "contacted",
  "meta_data": {
    "about": {
      "description": "Updated notes.",
      "url": "https://acme.com"
    }
  }
}
'
{
  "http_code": 200,
  "status": "success",
  "message": "Lead updated",
  "data": {
    "id": 42,
    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "title": "Acme Corp (Renewed)",
    "status_name": "contacted",
    "meta_data": {
      "about": {
        "description": "Updated notes.",
        "url": "https://acme.com"
      }
    },
    "avatar": null,
    "avatar_type": null,
    "created_at": "2026-01-10T08:00:00.000Z",
    "updated_at": "2026-04-08T09:00:00.000Z"
  }
}

Authorizations

X-API-Key
string
header
required

Your Flozy API key. Starts with flz_live_.

Path Parameters

id
integer
required

Body

application/json
title
string
Maximum string length: 200
status_name
string

Status slug. Auto-created if it does not exist. Use GET /lead-statuses to list existing slugs.

Maximum string length: 100
Example:

"contacted"

meta_data
object

Response

Lead updated.