---
title: "Create a story (single or multi-frame)"
method: POST
path: "/stories"
tags: ["Stories"]
---

# Create a story (single or multi-frame)

`POST /stories`

Creates a story on a story-capable page (Instagram and Facebook). Provide `media` as a single URL for a one-frame story, or as an array of URLs (max 20) to create a multi-frame story group (one frame per URL, in order). When a multi-frame story is created the response also includes `posts` (every frame, in order) and `group` (the shared story-group id and its post ids). GIFs are not supported. Media is processed asynchronously, so the `media` URL is typically `null` in this response while the upload is still processing — use `mediaId` with GET /media/{id} (or re-fetch the story) to poll `mediaStatus` until it is `success`, at which point the URL becomes available. The `notify` flag controls whether workspace members receive a post-added notification (email/in-app push); set it to `false` to suppress those notifications. Internal activity feed entries are always recorded. `notify` is not an approval request — use POST /posts/{id}/request-approval to notify approvers.

## Request body

- object
  - `workspaceId` string, required
  - `pageId` string, required
  - `media` union, required — A single media URL creates a one-frame story. An array of media URLs (max 20) creates a multi-frame story group — one frame per URL, in order. GIFs are not supported.
    - string, uri
    - string[]
  - `stickers` object[]
    - `type` 'text' | 'location' | 'link' | 'music' | 'mention' | 'hashtags' | 'questions' | 'notes' | 'fundraiser' | 'feelings' | 'other', required
    - `value` string, required
  - `scheduledAt` string, date-time
  - `labels` string[]
  - `teamOnly` boolean
  - `approved` boolean
  - `approvedBy` string
  - `publishAtScheduledDate` boolean
  - `notify` boolean — Controls whether workspace members receive a post-added notification (email/in-app push). This is not an approval request — use POST /posts/{id}/request-approval to notify approvers.
  - `internalNote` string

## Response `201`

Story created

- object
  - `data` object, required
    - `id` string, required
    - `workspaceId` string, required
    - `pageId` string, required
    - `type` string, required
    - `classification` 'story', required
    - `media` string, uri, nullable, required
    - `mediaId` string, nullable, required — Media library id of the attached media. Use with GET /media/{id} to poll its processing status.
    - `mediaStatus` 'uploading' | 'processing' | 'error' | 'success', nullable, required — Processing status of the attached media. The `media` URL is only populated once this is `success`.
    - `scheduledAt` string, date-time, nullable, required
    - `scheduledSet` boolean, required
    - `status` string, required
    - `approved` boolean, required
    - `approvedBy` object[]
      - `userId` string, required
      - `approvedAt` string, date-time, required
    - `createdAt` string, date-time, required
  - `posts` object[]
    - `id` string, required
    - `workspaceId` string, required
    - `pageId` string, required
    - `type` string, required
    - `classification` 'story', required
    - `media` string, uri, nullable, required
    - `mediaId` string, nullable, required — Media library id of the attached media. Use with GET /media/{id} to poll its processing status.
    - `mediaStatus` 'uploading' | 'processing' | 'error' | 'success', nullable, required — Processing status of the attached media. The `media` URL is only populated once this is `success`.
    - `scheduledAt` string, date-time, nullable, required
    - `scheduledSet` boolean, required
    - `status` string, required
    - `approved` boolean, required
    - `approvedBy` object[]
      - `userId` string, required
      - `approvedAt` string, date-time, required
    - `createdAt` string, date-time, required
  - `group` object
    - `id` string, required
    - `postIds` string[], required

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Workspace or page not found
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/planable/apis/planable-public-api.md) · [All operations](https://skmtc.net/planable/apis/planable-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/planable/planable-public-api/revisions/e91a4f756dfe/schema)
