Authorization: Bearer ********************{
"firstName": "John",
"lastName": "Wick",
"state": "CA"
}curl --location --request PUT '/api/customer-vault/<customerID>/shipping-information/<id>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstName": "John",
"lastName": "Wick",
"state": "CA"
}'{
"id": 28,
"firstName": "John",
"lastName": "Wick",
"address": "111 New Street Name",
"state": "California",
"city": "San Diego",
"zip": "91206",
"country": "United States",
"note": "Example Note",
"archived": "No",
"createdOn": "2023-08-07 18:42:36"
}