Skip to main content
POST
https://credzu.com/wp-json/credzu/v1
/
update-partner-info
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"
}

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

lead_id
integer
required
The Credzu lead ID returned when the lead was created
loan_product
string
Type of loan product (e.g., "FHA", "VA", "Conventional")
property_state
string
Two-letter state code for the property (e.g., "MO", "CA", "TX")
custom_field
string
Any additional custom fields can be included - they’ll be stored as lead metadata

Response

success
boolean
true if the update was successful
message
string
Status message
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.