Using Convertr APIs? Subscribe here to receive email notifications for development changes that may impact your implementation.
Endpoint: POST https://{enterprise}.cvtr.io/ajax/lead-append/{leadHash}Appends or edits data on an existing lead record. Use this endpoint to add new field values or overwrite existing ones against a known lead hash.
Path Parameters
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
string |
Yes |
Your enterprise subdomain identifier |
|
string |
Yes |
The unique hash of the lead record to update |
Request
Content-Type: form-data
Pass any lead fields as form data key-value pairs. Field names should match your configured lead schema.
Example cURL Request
curl --location 'https://demo.cvtr.io/ajax/lead-append/{leadHash}' \
--form 'some_data="sdata"' \
--form 'more_data="mdata"' \
--form 'even_more_data="emdata"' \
Status Code |
Meaning |
Description |
|---|---|---|
|
✅ Success |
The lead record was updated successfully. No response body is returned. |
|
❌ Error |
The lead hash could not be found. Ensure the |
Notes
Replace
{enterprise}and{leadHash}with your actual values before making a request.Multiple fields can be submitted in a single request
Existing field values will be overwritten if a matching key is provided