curl -X PATCH "https://app.journeybee.io/api/v1/leads/789" \
-H "Authorization: Bearer jb_api_1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"status": "qualified",
"company_name": "TechCorp Solutions Inc",
"phone_number": "+1-555-123-4567",
"assignedUsers": [123, 456],
"tags": [10, 11, 12],
"customFields": [
{
"customFieldId": 5,
"type": "number",
"value": {
"number": 150000
}
},
{
"customFieldId": 6,
"type": "select",
"value": {
"select": 3
}
}
]
}'