Payload CMS Operations
Authoritative reference for Payload 3.x — the Next.js-native, TypeScript-first headless CMS. Payload 3 installs into a Next.js (App Router) app and gives you an auto-generated admin panel, REST + GraphQL APIs, a typed Local API, authentication, access control, file storage, and live preview — one open-source TypeScript codebase.
Version note (verified against payloadcms.com/docs, 2026-06): Payload 3 is the Next.js fullstack framework — there is no standalone Express server anymore. The config lives at src/payload.config.ts; Payload mounts into the Next App Router via the installed (payload) route group. Don't ship Payload 2.x "standalone Express app" guidance.
Architecture at a glance
| Piece |
What it is |
| payload.config.ts |
Single source of truth: collections, globals, db adapter, plugins, admin, auth |
| Collections |
Repeatable document groups (Posts, Users, Media) — the core building block |
| Globals |
Singletons (one document) — site settings, header/footer nav |
| Fields |
Compose document shape; also drive admin UI, validation, access |
| Local API |
Typed, in-process data access (payload.find(...)) — no HTTP, runs server-side |
| REST / GraphQL |
Auto-generated HTTP APIs over the same collections |
| Database adapter |
@payloadcms/db-postgres, db-mongodb, or db-sqlite |
| Storage adapter |
Local disk (dev) or S3/R2/etc. for uploads |
Where it lives in a Next.js app
src/
├── payload.config.ts # the config — collections, globals, db, plugins
├── collections/ # one file per CollectionConfig
│ ├── Users.ts
│ ├── Posts.ts
│ └── Media.ts
├── globals/ # GlobalConfig files
└── app/
├── (payload)/ # Payload's admin + API route group (generated)
└── (frontend)/ # your Next.js front end — uses the Local API
Collections — the core shape
import type { CollectionConfig } from 'payload'
export const Posts: CollectionConfig = {
slug: 'posts', // required, URL-safe identifier
admin: { useAsTitle: 'title', defaultColumns: ['title', 'status'] },
access: { // see access-control reference
read: () => true,
create: ({ req }) => Boolean(req.user),
update: ({ req }) => Boolean(req.user),
delete: ({ req }) => req.user?.role === 'admin',
},
versions: { drafts: true }, // draft/publish + revision history
hooks: { /* lifecycle — see hooks reference */ },
fields: [
{ name: 'title', type: 'text', required: true },
{ name: 'slug', type: 'text', unique: true, index: true },
{ name: 'content', type: 'richText' },
{ name: 'author', type: 'relationship', relationTo: 'users' },
],
}
| Collection property |
Purpose |
slug |
Required identifier (and REST/GraphQL route base) |
fields |
Required — document shape + UI + validation |
access |
Per-operation authorization (read/create/update/delete) |
hooks |
Lifecycle entry points (before/after change/read/delete) |
admin |
Admin-panel UI (title field, columns, components, groups) |
auth |
Turns the collection into an auth collection (e.g. Users) |
upload |
Makes it an upload collection (file storage, image sizes) |
versions |
Drafts + revision history |
Globals vs Collections
"If your Collection is only ever meant to contain a single Document, consider using a Global instead."
Globals (GlobalConfig) are singletons — site settings, main nav. Same fields/access/hooks/admin surface, one document.
Fields (the 80/20)
| Type |
Use for |
text, textarea, number, email, date, checkbox |
Scalars |
richText |
Lexical-based rich content |
select, radio |
Enumerations |
relationship |
Link to other collections (relationTo, hasMany) |
upload |
Reference an upload collection (media) |
array |
Repeatable sub-field groups |
blocks |
Flexible content — choose from defined block types per row |
group |
Nested namespaced fields |
row, collapsible, tabs |
Admin layout only (no data nesting except tabs with name) |
json, code |
Raw structured/code data |
Every field can carry access, hooks, validate, admin.condition (conditional display), and localized: true for i18n. See references/hooks-and-fields.md.
Access control — least privilege by default
Access functions return boolean or a query constraint (row-level filtering). They run for Local API, REST, and GraphQL uniformly.
access: {
// boolean: can this user perform the op at all?
delete: ({ req }) => req.user?.role === 'admin',
// query constraint: WHICH documents can they read? (row-level)
read: ({ req }) => {
if (req.user?.role === 'admin') return true
return { author: { equals: req.user?.id } } // only their own
},
}
- Collection-level (read/create/update/delete) and field-level (
field.access.read/create/update) both exist — use field-level to hide/lock individual fields.
- Never bypass access control in custom endpoints. Use
req context; don't hand-roll DB calls that skip it.
- The Local API can run with
overrideAccess: true for trusted server code — use deliberately, not by default.
Full patterns (RBAC, multi-tenant isolation, field-level): references/access-control.md.
Hooks — lifecycle entry points
hooks: {
beforeChange: [({ data, req, operation }) => { /* mutate before save */ return data }],
afterChange: [({ doc, req, operation }) => { /* side effects: revalidate, notify */ return doc }],
beforeRead: [/* ... */],
afterRead: [/* shape outgoing doc */],
beforeDelete: [/* ... */],
afterDelete: [/* cleanup */],
}
Common use: in afterChange, call Next.js revalidatePath() / revalidateTag() to bust the front-end cache on publish. Full hook catalog (collection, field, global, auth hooks): references/hooks-and-fields.md.
Local API (the Next.js superpower)
In server components / route handlers, fetch data in-process — no HTTP round trip, fully typed:
import { getPayload } from 'payload'
import config from '@payload-config'
const payload = await getPayload({ config })
const { docs } = await payload.find({
collection: 'posts',
where: { status: { equals: 'published' } },
depth: 1, // auto-populate relationships one level deep
limit: 10,
})
payload.find / findByID / create / update / delete / findGlobal mirror the REST surface. Access control still applies unless overrideAccess: true.
Caching in Next.js
- Wrap Local API reads in
unstable_cache (or cache) with tags, then invalidate from an afterChange hook via revalidateTag.
depth controls relationship population — keep it low to avoid over-fetching.
Decision tables
Database adapter
| Choice |
Pick when |
Postgres (db-postgres) |
Relational data, SQL reporting, Vercel Postgres/Neon/Supabase; migrations matter |
MongoDB (db-mongodb) |
Document-shaped data, flexible schema, existing Mongo infra |
SQLite (db-sqlite) |
Local/edge, small footprint, simple deploys |
Storage adapter
| Choice |
Pick when |
| Local disk |
Dev only — not for serverless (ephemeral FS) |
S3 / R2 (@payloadcms/storage-s3) |
Production; put a CDN (CloudFront/Cloudflare) in front; signed URLs for private media; handle 403 on the frontend |
Multi-tenancy
| Approach |
Pick when |
@payloadcms/plugin-multi-tenant |
Standard tenant isolation by a tenant field |
| Custom access constraints |
Bespoke isolation rules; enforce via row-level read/update constraints |
Common gotchas
| Gotcha |
Why |
Fix |
| Users see data they shouldn't |
read access returns true (no row filter) |
Return a query constraint from read, not just true |
| Local disk uploads vanish on Vercel |
Serverless FS is ephemeral |
Use S3/R2 storage adapter |
| Stale front-end after publish |
Next.js caches the read |
revalidateTag/Path in an afterChange hook |
| S3 signed URL 403s on frontend |
URLs expire |
Handle 403 gracefully; refresh URL |
| Over-deep relationship fetch |
High depth populates everything |
Keep depth minimal; populate explicitly |
| Custom endpoint leaks data |
Bypassed access control |
Go through Local API with access on; reserve overrideAccess for trusted paths |
| Env not validated |
Misconfig fails at runtime |
Validate env (zod) at boot |
| No real-time collab |
Payload has no built-in CRDT |
Pair with Liveblocks/Yjs; Payload stays source of truth for final state |
Assets
| File |
Use |
assets/collection.config.template.ts |
Heavily commented Payload 3 CollectionConfig starter (access + hooks + fields), with adapt-points marked |
See also
typescript-ops — typing config, generated types (payload generate:types)
react-ops — custom admin components, server components consuming the Local API
api-design-ops — REST/GraphQL surface design, pagination, versioning
auth-ops — auth collections, sessions/JWT, RBAC/ABAC patterns behind access control
Key external resources
1---2name: payloadcms-ops3description: Payload CMS 3 (Next.js-native) architecture - collections, globals, fields, access control, hooks, Local API, storage adapters, and database (Postgres/MongoDB/SQLite). Use for: payload, payloadcms, payload cms, payload 3, collection config, access control, payload hooks, local api, payload fields, multi-tenant payload, payload nextjs, payload s3, payload r2, payloadcms architecture, headless cms typescript.4license: MIT5---67# Payload CMS Operations89Authoritative reference for **Payload 3.x** — the Next.js-native, TypeScript-first headless CMS. Payload 3 **installs into a Next.js (App Router) app** and gives you an auto-generated admin panel, REST + GraphQL APIs, a typed Local API, authentication, access control, file storage, and live preview — one open-source TypeScript codebase.1011> **Version note (verified against payloadcms.com/docs, 2026-06):** Payload 3 is the **Next.js fullstack framework** — there is no standalone Express server anymore. The config lives at `src/payload.config.ts`; Payload mounts into the Next App Router via the installed `(payload)` route group. Don't ship Payload 2.x "standalone Express app" guidance.1213---1415## Architecture at a glance1617| Piece | What it is |18|-------|-----------|19| **payload.config.ts** | Single source of truth: collections, globals, db adapter, plugins, admin, auth |20| **Collections** | Repeatable document groups (Posts, Users, Media) — the core building block |21| **Globals** | Singletons (one document) — site settings, header/footer nav |22| **Fields** | Compose document shape; also drive admin UI, validation, access |23| **Local API** | Typed, in-process data access (`payload.find(...)`) — no HTTP, runs server-side |24| **REST / GraphQL** | Auto-generated HTTP APIs over the same collections |25| **Database adapter** | `@payloadcms/db-postgres`, `db-mongodb`, or `db-sqlite` |26| **Storage adapter** | Local disk (dev) or S3/R2/etc. for uploads |2728### Where it lives in a Next.js app2930```31src/32├── payload.config.ts # the config — collections, globals, db, plugins33├── collections/ # one file per CollectionConfig34│ ├── Users.ts35│ ├── Posts.ts36│ └── Media.ts37├── globals/ # GlobalConfig files38└── app/39 ├── (payload)/ # Payload's admin + API route group (generated)40 └── (frontend)/ # your Next.js front end — uses the Local API41```4243---4445## Collections — the core shape4647```typescript48import type { CollectionConfig } from 'payload'4950export const Posts: CollectionConfig = {51 slug: 'posts', // required, URL-safe identifier52 admin: { useAsTitle: 'title', defaultColumns: ['title', 'status'] },53 access: { // see access-control reference54 read: () => true,55 create: ({ req }) => Boolean(req.user),56 update: ({ req }) => Boolean(req.user),57 delete: ({ req }) => req.user?.role === 'admin',58 },59 versions: { drafts: true }, // draft/publish + revision history60 hooks: { /* lifecycle — see hooks reference */ },61 fields: [62 { name: 'title', type: 'text', required: true },63 { name: 'slug', type: 'text', unique: true, index: true },64 { name: 'content', type: 'richText' },65 { name: 'author', type: 'relationship', relationTo: 'users' },66 ],67}68```6970| Collection property | Purpose |71|---------------------|---------|72| `slug` | Required identifier (and REST/GraphQL route base) |73| `fields` | Required — document shape + UI + validation |74| `access` | Per-operation authorization (read/create/update/delete) |75| `hooks` | Lifecycle entry points (before/after change/read/delete) |76| `admin` | Admin-panel UI (title field, columns, components, groups) |77| `auth` | Turns the collection into an auth collection (e.g. Users) |78| `upload` | Makes it an upload collection (file storage, image sizes) |79| `versions` | Drafts + revision history |8081### Globals vs Collections8283> *"If your Collection is only ever meant to contain a single Document, consider using a Global instead."*8485Globals (`GlobalConfig`) are singletons — site settings, main nav. Same `fields`/`access`/`hooks`/`admin` surface, one document.8687---8889## Fields (the 80/20)9091| Type | Use for |92|------|---------|93| `text`, `textarea`, `number`, `email`, `date`, `checkbox` | Scalars |94| `richText` | Lexical-based rich content |95| `select`, `radio` | Enumerations |96| `relationship` | Link to other collections (`relationTo`, `hasMany`) |97| `upload` | Reference an upload collection (media) |98| `array` | Repeatable sub-field groups |99| `blocks` | Flexible content — choose from defined block types per row |100| `group` | Nested namespaced fields |101| `row`, `collapsible`, `tabs` | Admin layout only (no data nesting except `tabs` with `name`) |102| `json`, `code` | Raw structured/code data |103104Every field can carry `access`, `hooks`, `validate`, `admin.condition` (conditional display), and `localized: true` for i18n. See `references/hooks-and-fields.md`.105106---107108## Access control — least privilege by default109110Access functions return `boolean` **or a query constraint** (row-level filtering). They run for Local API, REST, and GraphQL uniformly.111112```typescript113access: {114 // boolean: can this user perform the op at all?115 delete: ({ req }) => req.user?.role === 'admin',116117 // query constraint: WHICH documents can they read? (row-level)118 read: ({ req }) => {119 if (req.user?.role === 'admin') return true120 return { author: { equals: req.user?.id } } // only their own121 },122}123```124125- **Collection-level** (read/create/update/delete) and **field-level** (`field.access.read/create/update`) both exist — use field-level to hide/lock individual fields.126- **Never bypass access control in custom endpoints.** Use `req` context; don't hand-roll DB calls that skip it.127- The Local API can run with `overrideAccess: true` for trusted server code — use deliberately, not by default.128129Full patterns (RBAC, multi-tenant isolation, field-level): `references/access-control.md`.130131---132133## Hooks — lifecycle entry points134135```typescript136hooks: {137 beforeChange: [({ data, req, operation }) => { /* mutate before save */ return data }],138 afterChange: [({ doc, req, operation }) => { /* side effects: revalidate, notify */ return doc }],139 beforeRead: [/* ... */],140 afterRead: [/* shape outgoing doc */],141 beforeDelete: [/* ... */],142 afterDelete: [/* cleanup */],143}144```145146Common use: in `afterChange`, call Next.js `revalidatePath()` / `revalidateTag()` to bust the front-end cache on publish. Full hook catalog (collection, field, global, auth hooks): `references/hooks-and-fields.md`.147148---149150## Local API (the Next.js superpower)151152In server components / route handlers, fetch data in-process — no HTTP round trip, fully typed:153154```typescript155import { getPayload } from 'payload'156import config from '@payload-config'157158const payload = await getPayload({ config })159160const { docs } = await payload.find({161 collection: 'posts',162 where: { status: { equals: 'published' } },163 depth: 1, // auto-populate relationships one level deep164 limit: 10,165})166```167168`payload.find / findByID / create / update / delete / findGlobal` mirror the REST surface. Access control still applies unless `overrideAccess: true`.169170### Caching in Next.js171172- Wrap Local API reads in `unstable_cache` (or `cache`) with tags, then invalidate from an `afterChange` hook via `revalidateTag`.173- `depth` controls relationship population — keep it low to avoid over-fetching.174175---176177## Decision tables178179### Database adapter180181| Choice | Pick when |182|--------|-----------|183| **Postgres** (`db-postgres`) | Relational data, SQL reporting, Vercel Postgres/Neon/Supabase; migrations matter |184| **MongoDB** (`db-mongodb`) | Document-shaped data, flexible schema, existing Mongo infra |185| **SQLite** (`db-sqlite`) | Local/edge, small footprint, simple deploys |186187### Storage adapter188189| Choice | Pick when |190|--------|-----------|191| Local disk | Dev only — not for serverless (ephemeral FS) |192| S3 / R2 (`@payloadcms/storage-s3`) | Production; put a CDN (CloudFront/Cloudflare) in front; signed URLs for private media; handle 403 on the frontend |193194### Multi-tenancy195196| Approach | Pick when |197|----------|-----------|198| `@payloadcms/plugin-multi-tenant` | Standard tenant isolation by a tenant field |199| Custom access constraints | Bespoke isolation rules; enforce via row-level `read`/`update` constraints |200201---202203## Common gotchas204205| Gotcha | Why | Fix |206|--------|-----|-----|207| Users see data they shouldn't | `read` access returns `true` (no row filter) | Return a **query constraint** from `read`, not just `true` |208| Local disk uploads vanish on Vercel | Serverless FS is ephemeral | Use S3/R2 storage adapter |209| Stale front-end after publish | Next.js caches the read | `revalidateTag/Path` in an `afterChange` hook |210| S3 signed URL 403s on frontend | URLs expire | Handle 403 gracefully; refresh URL |211| Over-deep relationship fetch | High `depth` populates everything | Keep `depth` minimal; populate explicitly |212| Custom endpoint leaks data | Bypassed access control | Go through Local API with access on; reserve `overrideAccess` for trusted paths |213| Env not validated | Misconfig fails at runtime | Validate env (zod) at boot |214| No real-time collab | Payload has no built-in CRDT | Pair with Liveblocks/Yjs; Payload stays source of truth for final state |215216---217218## Assets219220| File | Use |221|------|-----|222| `assets/collection.config.template.ts` | Heavily commented Payload 3 CollectionConfig starter (access + hooks + fields), with adapt-points marked |223224---225226## See also227228- `typescript-ops` — typing config, generated types (`payload generate:types`)229- `react-ops` — custom admin components, server components consuming the Local API230- `api-design-ops` — REST/GraphQL surface design, pagination, versioning231- `auth-ops` — auth collections, sessions/JWT, RBAC/ABAC patterns behind access control232233### Key external resources234235- [What is Payload](https://payloadcms.com/docs/getting-started/what-is-payload)236- [Collections](https://payloadcms.com/docs/configuration/collections) · [Fields](https://payloadcms.com/docs/fields/overview)237- [Access control](https://payloadcms.com/docs/access-control/overview)238- [Hooks](https://payloadcms.com/docs/hooks/overview)239- [Local API](https://payloadcms.com/docs/local-api/overview)240- [Database](https://payloadcms.com/docs/database/overview) · [Storage adapters](https://payloadcms.com/docs/upload/storage-adapters)241- [Multi-tenant plugin](https://payloadcms.com/docs/plugins/multi-tenant)