---
title: "Delete scheduled post"
method: DELETE
path: "/api/apps/{app_id}/social-calendar/posts/{post_id}"
---

# Delete scheduled post

`DELETE /api/apps/{app_id}/social-calendar/posts/{post_id}`

<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Removes a post from the app's social calendar.

This is how you cancel a post you already scheduled: a deleted post never publishes, even when a publisher run is already waiting on its scheduled time. The one exception is a post being published right now, which fails with a 409 because the request to the platform may already be in flight.

Deleting a post that's already deleted succeeds, so a repeated call is safe. The post stops appearing in [List scheduled posts](/api-reference/list-scheduled-posts) and reads as not found afterwards.

The social calendar endpoints share two rate limits: 20 requests per minute across creating, editing, deleting and approving posts, and 40 requests per minute across the rest. This endpoint counts against the 20.

<Note>This endpoint accepts a personal API key. Workspace API keys are not authorized for it and are rejected with a 403.</Note>

## Path parameters

- `post_id` string, required — ID of the post, as returned by [List scheduled posts](/api-reference/list-scheduled-posts).
- `app_id` string, required — ID of the app whose social calendar you want.

## Response `200`

The post is deleted.

- DeleteScheduledPostResponse
  - `status` string — Always `ok`. The post is deleted, or was already.

## Other responses

- `401` — Missing or invalid credentials.
- `403` — You don't have editor access to this app, or you used a workspace API key.
- `404` — App not found, the post doesn't exist or is already deleted, or the social calendar is not enabled for your account.
- `409` — The post is publishing right now.
- `422` — Validation Error
- `429` — Rate limit exceeded (20 requests per minute).

---

[API](https://skmtc.dev/base44/apis/base44-app-management-api.md) · [All operations](https://skmtc.dev/base44/apis/base44-app-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/base44/base44-app-management-api/revisions/173e4e9c63c2/schema)
