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": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "scheduled",
    "publish_at_utc": "2023-11-07T05:31:56Z",
    "scheduled_timezone": "<string>"
  }
}

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 April 13, 2026