Delete an Account Address
DELETE/v2/accounts/:accountID/addresses/:addressID
Delete a specific account within a store
Request
Path Parameters
accountID stringrequired
The ID of the account 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": "account not found"
    }
  ]
}
Loading...