cURL
curl --request PUT \ --url https://app.famulor.de/api/leads/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "campaign_id": 123, "phone_number": "<string>", "status": "<string>", "variables": {} } '
{ "message": "Lead successfully updated" }
Update an existing lead in your campaigns
{ "campaign_id": 2, "phone_number": "+1234567890", "status": "completed", "variables": { "customer_name": "Jane Doe", "email": "jane.doe@example.com", "notes": "Successfully contacted" } }
Was this page helpful?