Delete a Customer Address
DELETE/v2/customers/:customerID/addresses/:addressID
Delete a Customer Address
Request
Path Parameters
customerID stringrequired
The ID of the customer that contains the address to delete.
addressID stringrequired
The ID of the address to delete.
Responses
- 204
- 404
No Content
Not Found
- application/json
- Schema
- Example (from schema)
- not-found-error
Schema
- Array [
- ]
errors Error[]required
status string
The HTTP response code of the error.
title string
A brief summary of the error.
detail string
Optional additional detail about the error.
{
"errors": [
{
"status": "string",
"title": "string",
"detail": "string"
}
]
}
{
"errors": [
{
"status": "404",
"title": "Not Found",
"detail": "customer not found"
}
]
}
Loading...