---
title: "Add subscribers to post"
method: POST
path: "/subscribers"
tags: ["Subscribers"]
---

# Add subscribers to post

`POST /subscribers`

Add one or more subscribers to a post

## Request body

- CreateSubscribersInput
  - `postId` string, uuid, required
  - `userIds` string[], required

## Response `200`

Subscribers added

- object
  - `createdSubscribers` Subscriber[]
    - `id` string, uuid
    - `user` SubscriberUser
      - `id` string, uuid
      - `firstName` string, nullable
      - `lastName` string, nullable
    - `createdBy` SubscriberUser
      - `id` string, uuid
      - `firstName` string, nullable
      - `lastName` string, nullable
    - `createdAt` string, date-time
  - `existingSubscribers` Subscriber[]
    - `id` string, uuid
    - `user` SubscriberUser
      - `id` string, uuid
      - `firstName` string, nullable
      - `lastName` string, nullable
    - `createdBy` SubscriberUser
      - `id` string, uuid
      - `firstName` string, nullable
      - `lastName` string, nullable
    - `createdAt` string, date-time

## Other responses

- `400` — Bad Request - Invalid input parameters
- `401` — Unauthorized - Missing or invalid API key
- `404` — Not Found - Resource does not exist

---

[API](https://skmtc.net/tryordinal/apis/ordinal-api.md) · [All operations](https://skmtc.net/tryordinal/apis/ordinal-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tryordinal/ordinal-api/versions/1d0792ff454f/schema)
