Delete an existing address for the authenticated user
curl --request DELETE \
--url https://api.example.com/api/address \
--header 'Content-Type: application/json' \
--data '
{
"addressId": 123
}
'{
"statusCode": 200,
"message": "Address deleted successfully"
}
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/memoowi/e-comm-api-demo-2/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer <your_token>
curl -X DELETE https://api.example.com/api/address \
-H "Authorization: Bearer <your_token>" \
-H "Content-Type: application/json" \
-d '{
"addressId": 1
}'
{
"statusCode": 200,
"message": "Address deleted successfully"
}
curl --request DELETE \
--url https://api.example.com/api/address \
--header 'Content-Type: application/json' \
--data '
{
"addressId": 123
}
'{
"statusCode": 200,
"message": "Address deleted successfully"
}