Settings Schema
When creating a post for Reddit, use the following settings schema:
Fields
| Field | Type | Required | Description |
|---|
__type | string | Yes | Must be reddit |
subreddit | array | Yes | Array of subreddit configurations |
Subreddit Object
Each item in the subreddit array contains a value object with:
| Field | Type | Required | Description |
|---|
subreddit | string | Yes | Subreddit name (without r/) |
title | string | Yes | Post title (min 2 characters) |
type | string | Yes | Post type |
url | string | Conditional | URL for link posts |
is_flair_required | boolean | Yes | Whether flair is required |
flair | object | Conditional | Flair object (required if is_flair_required is true) |
type (Post Type)
| Value | Description |
|---|
self | Text post (uses content from post value) |
link | Link post (requires url field) |
image | Image post |
video | Video post |
Flair Object
Required when is_flair_required is true:
Complete Example
Text Post (Self Post)
Link Post
Post with Required Flair
Cross-post to Multiple Subreddits
Tip: You can post to multiple subreddits simultaneously by adding multiple objects to the subreddit array.