Overview
Used when you want to push additional metadata about a lead after the initial creation. This is useful for adding loan product details, property information, or other data that wasn’t available at referral time.
Request Body
The Credzu lead ID returned when the lead was created
Type of loan product (e.g., "FHA", "VA", "Conventional")
Two-letter state code for the property (e.g., "MO", "CA", "TX")
Any additional custom fields can be included - they’ll be stored as lead metadata
Response
true if the update was successful
curl -X POST https://credzu.com/wp-json/credzu/v1/update-partner-info \
-H "Content-Type: application/json" \
-H "Authorization: Credzu-Key YOUR_API_KEY" \
-d '{
"lead_id": 44921,
"loan_product": "FHA",
"property_state": "MO",
"salesforce_id": "SF-001234"
}'
{
"success" : true ,
"message" : "Partner info updated"
}
Common Use Cases
Loan Product Details Add FHA, VA, Conventional, or other loan type information after the initial referral.
Property Information Include property state, county, or other location data relevant to the loan.
CRM Integration Store Salesforce IDs, HubSpot IDs, or other external system references.
Channel Tracking Tag leads with marketing channel or campaign information.
All custom fields are stored as lead metadata and can be retrieved using the Get Lead endpoint.