Delete one of my addresses
DELETE
/store/v1/customers/me/addresses/{id}
const url = 'https://your-store.example.com/store/v1/customers/me/addresses/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://your-store.example.com/store/v1/customers/me/addresses/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string