Skip to main content
DELETE
/
gbp
/
posts
/
{id}
Delete a GBP post
curl --request DELETE \
  --url https://api.app.hrizn.io/v1/public/gbp/posts/{id} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "id": "a1b2c3d4-5678-9012-3456-789012345678",
    "deleted": true
  }
}
Permanently deletes a GBP post.
  • Posted posts: The post is first unpublished from Google, then removed from the database.
  • Scheduled posts: The EventBridge schedule is cancelled, then the record is deleted.
  • Other statuses: The record is deleted directly.
Scope required: gbp:write

Path parameters

id
string
required
Post ID (UUID).

Response

{
  "data": {
    "id": "a1b2c3d4-5678-9012-3456-789012345678",
    "deleted": true
  }
}
Deleting a posted post will unpublish it from Google Business Profile. This action cannot be undone.

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string<uuid>
required

Post ID

Response

Post deleted

data
object
Last modified on March 27, 2026