---
title: "Create Event"
method: POST
path: "/api/church-admin/events"
tags: ["church-admin"]
---

# Create Event

`POST /api/church-admin/events`

## Cookies

- `ca_session` string, nullable

## Request body

- CreateEventRequest
  - `title` string, required
  - `date` string, required
  - `start_time` string, nullable
  - `end_time` string, nullable
  - `location` string, nullable
  - `event_url` string, nullable

## Response `201`

Successful Response

- ChurchAdminEventResponse
  - `id` integer, required
  - `title` string, required
  - `date` string, required
  - `start_time` string, nullable
  - `end_time` string, nullable
  - `location` string, nullable
  - `event_url` string, nullable
  - `created_at` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/usecreed/apis/creed-api.md) · [All operations](https://skmtc.net/usecreed/apis/creed-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usecreed/creed-api/versions/523833f9e819/schema)
