curl --request PUT \
--url https://storekit.samarthh.me/v1/store/{storeId}/billing/{addressId} \
--header 'Content-Type: application/json' \
--data '
{
"firstName": "Jane",
"lastName": "Smith",
"phone": "+1987654321"
}
'Update an existing billing address. Only the address owner can update. Requires store user authentication.
curl --request PUT \
--url https://storekit.samarthh.me/v1/store/{storeId}/billing/{addressId} \
--header 'Content-Type: application/json' \
--data '
{
"firstName": "Jane",
"lastName": "Smith",
"phone": "+1987654321"
}
'