curl --location --request PUT '/api/v1/companies//leads/' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data '{
"lead": {
"full_name": "string",
"zip_code": "string",
"phone_number": "string",
"confirmation_phone_number": "string",
"email": "string",
"city": "string",
"lead_stage_id": 0,
"birthdate": "2019-08-24",
"zone": "string"
},
"appointment": {
"appointment_date": "string",
"init_time": "string",
"end_time": "string",
"user_access_id": 0
},
"address": {
"address_value": "string",
"address_comments": "string",
"lattitude": "string",
"longitude": "string"
},
"lead_note": {
"comment": "string"
},
"lead_answers": [
{
"question_id": 0,
"answer": "string"
}
]
}'