Skip to main content
POST
/
gbp
/
posts
/
{id}
/
reschedule
Reschedule a GBP post
curl --request POST \
  --url https://api.app.hrizn.io/v1/public/gbp/posts/{id}/reschedule \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "publish_at_utc": "2023-11-07T05:31:56Z",
  "scheduled_timezone": "<string>"
}
'
{
  "data": {
    "id": "a1b2c3d4-5678-9012-3456-789012345678",
    "status": "scheduled",
    "publish_at_utc": "2026-04-20T15:00:00.000Z",
    "scheduled_timezone": "America/New_York"
  }
}
Changes the scheduled publication time for a GBP post. The old EventBridge schedule is removed and a new one is created. Only posts with status scheduled or failed can be rescheduled. Scope required: gbp:write

Path parameters

id
string
required
Post ID (UUID).

Request body

publish_at_utc
string
required
New scheduled publication time as an ISO 8601 UTC timestamp. Must be in the future.
scheduled_timezone
string
required
IANA timezone (e.g. America/New_York).

Response

{
  "data": {
    "id": "a1b2c3d4-5678-9012-3456-789012345678",
    "status": "scheduled",
    "publish_at_utc": "2026-04-20T15:00:00.000Z",
    "scheduled_timezone": "America/New_York"
  }
}
Rescheduling a failed post resets its attempt counter and clears the last error, giving it a fresh chance to publish at the new time.

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string<uuid>
required

Post ID

Body

application/json
publish_at_utc
string<date-time>
required

New scheduled publication time (UTC, must be in the future)

scheduled_timezone
string
required

IANA timezone (e.g. America/New_York)

Response

Post rescheduled

data
object
Last modified on March 27, 2026