curl --location --request POST 'https://fullers.flamesware.com/api/v1/customer/addresses/2' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--form 'label="Home"' \
--form 'first_name="Syed Azlan"' \
--form 'last_name="Ali"' \
--form 'phone="+923112507247"' \
--form 'address="11/2 Block 1E Nazimabad"' \
--form 'city="Karachi"' \
--form 'state="Sindh"' \
--form 'zip="74600"' \
--form 'country="Pakistan"' \
--form '_method="PUT"'
{
"success": true,
"message": "Address Updated",
"data": {
"id": 2,
"customer_id": 2,
"label": "Home",
"first_name": "Syed Azlan",
"last_name": "Ali",
"phone": "+923112507247",
"address": "11/2 Block 1E Nazimabad",
"city": "Karachi",
"state": "Sindh",
"zip": "74600",
"country": "Pakistan",
"lat": null,
"lng": null,
"created_at": "2025-07-24T18:40:16.000000Z",
"updated_at": "2025-07-24T18:40:16.000000Z",
"deleted_at": null,
"formatted_address": "11/2 Block 1E Nazimabad, Karachi, Sindh 74600, Pakistan"
}
}