> For the complete documentation index, see [llms.txt](https://tag-api.agreefy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tag-api.agreefy.com/buildings/delete-building.md).

# Delete Building

Delete organization building

* URL Parameter&#x73;**:**

  **clientUUID**

  **buildingUUID**

## Delete building

<mark style="color:blue;">`GET`</mark> `https://<baseurl>//v1/organization/building/delete/@clientUUID/@buildingUUID`

#### Path Parameters

| Name         | Type   | Description   |
| ------------ | ------ | ------------- |
| clientUUID   | string | Client UUID   |
| buildingUUID | string | Building UUID |

#### Headers

| Name           | Type   | Description          |
| -------------- | ------ | -------------------- |
| Authentication | string | Authentication token |

{% tabs %}
{% tab title="200 " %}

```
#########################################################################
## success
#########################################################################

{
    "message": "success",
    "status": 200
}

#########################################################################
## Error
#########################################################################
            
{
	"message": "error",
	"status": 400,
}

#########################################################################
## Deletion Cancelled
#########################################################################
            
{
	"message": "error",
	"status": 401,
	"description": "Kindly delete the floor plan present in this building before deletion"
}






```

{% endtab %}
{% endtabs %}
