# Delete Blueprint
Delete a WordPress blueprint.
Requires an active WordPress Toolkit add-on on the account.
# Delete WordPress Blueprint
# HTTP Request:
DELETE https://api.serveravatar.com/wordpress-blueprints/{wordpressBlueprint}
# Curl Request Example:
curl --request DELETE \
--url "https://api.serveravatar.com/wordpress-blueprints/12" \
--header 'content-type: application/json' \
--header 'Authorization: <YOUR API TOKEN>'
# Response:
# Successful Response
- 200 (Ok)
{
"message": "WordPress blueprint deleted successfully."
}
# Blueprint Not Found
- 404 (Not Found)
{
"message": "Blueprint not found."
}