❌Delete Address
You are able to remove an Address Record record from your Gathr database.
Delete Address
DELETE {{baseUrl}}/addresses/:address_id
Remove a Customers Address record by using their address_id.
Path Parameters
Name
Type
Description
address_id*
String
The UUID for a specific address that gets generated and returned in the POST Create New Address response.
```json
{
"deleted": [
"f7d60e77-415d-4706-b58b-33b382e52aae"
]
}
``````json
{
"errors": {
"code": "entity_not_found",
"message": "Record not found in addresses"
}
}
``````json
{
"errors": {
"code": "entity_not_found",
"message": "Record not found in addresses"
}
}
```Last updated