---
title: "Create an announcement"
method: POST
path: "/psps/{pspId}/announcements"
tags: ["PSP Announcements"]
---

# Create an announcement

`POST /psps/{pspId}/announcements`

Create a new announcement for a Public Status Page

## Path parameters

- `pspId` number, required

## Request body

- CreatePspAnnouncementRequestDto
  - `title` string — Title of the announcement
  - `content` string — Content of the announcement
  - `status` 'Offline' | 'Pending' | 'Published' | 'Archived' — Status of the announcement. Possible values: Offline (draft, not visible on status page), Pending (scheduled for publication), Published (currently visible on status page), Archived (historical record, no longer visible)
  - `type` 'Info' | 'Maintenance' | 'Issue' — Type of the announcement. Possible values: Info (general information), Maintenance (scheduled maintenance notification), Issue (incident or issue notification)
  - `startDate` string, date-time — Start date of the announcement (ISO 8601 format)
  - `endDate` string, date-time, nullable — End date of the announcement (ISO 8601 format)

## Response `201`

The announcement has been successfully created

- PspAnnouncementResponseDto
  - `id` integer, required
  - `pspId` integer, nullable, required
  - `userId` integer, nullable, required
  - `title` string, nullable, required
  - `content` string, nullable, required
  - `status` unknown, required
  - `type` unknown, required
  - `deliveryStatus` unknown, required
  - `startDate` unknown, required
  - `endDate` unknown, required
  - `creationDate` unknown, required
  - `submitDate` unknown, required
  - `sentCount` integer, nullable, required

## Other responses

- `400` — Invalid request body
- `401` — Unauthorized - missing or invalid authentication
- `403` — Forbidden - no write permission
- `404` — PSP not found

---

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