---
title: "Bejegyzések mozgatása és átütemezése | Posty dokumentáció"
description: "Áthúzás egy másik időpontra, tömeges átütemezés, és mi történik, ha egy már közzétett bejegyzést mozgatsz."
canonical: https://posty.hu/en/docs/calendar/moving
source: https://posty.hu/en/docs/calendar/moving.md
---

Naptár és bejegyzések

# Bejegyzések mozgatása és átütemezése

Áthúzás egy másik időpontra, tömeges átütemezés, és mi történik, ha egy már közzétett bejegyzést mozgatsz.

## Drag and drop

On desktop, just drag the post to another time. The calendar saves the new time immediately, and that's when the post goes out.

Scheduled posts and drafts move without confirmation.

## Already published posts

We’ll ask what you want to do

If you drag a post that has already gone out or has a date in the past, we ask what you want to do. The two options do very different things.

| Choice | What it does | When to use it |
| --- | --- | --- |
| Update post details only | This changes the time stored in Posty. The post on the platform is left unchanged. | If you just want to tidy up your calendar. |
| Reschedule the post | The post is queued again and published to the platform at the new time. | If you really want it to be published again. |

Closing the window cancels the move: the post stays where it was.

## Moving from the editor

You can change the date on any device by opening the post and using the date picker in the editor footer. This works like dragging, but gives you more precision: you can set the exact minute.

## On mobile

You can't drag posts on mobile. Open the post and change the time in the date picker.

## Rescheduling via the API

To update the time via the API, send the post again. In the `POST /public/v1/posts` call, pass the existing group ID. The post is updated in place instead of creating a second one.

```
curl -X POST https://api.posty.hu/public/v1/posts \
  -H "Authorization: psty_a_kulcsod" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "schedule",
    "date": "2026-09-16T08:00:00.000Z",
    "group": "grp_9f8e7d6c",
    "posts": [ ... ]
  }'
```

Kód másolása

To move a post between draft and scheduled status, use the [Change post status](https://posty.hu/en/docs/api/endpoints/bejegyzes-allapot) endpoint.

Documentation pages

Is something missing from this page? Email [norbert@posty.hu](mailto:norbert@posty.hu) or use the form on the [Help](https://posty.hu/en/help) page.
