Postly
  1. Posts
Postly
  • Overview
  • Workspaces
    • Fetch workspaces
      GET
  • Socials
    • Fetch socials
      GET
  • Files
    • Upload a file
      POST
    • Fetch files
      GET
    • Delete a file
      DELETE
  • Posts
    • Create a post
      POST
    • Update a post
      POST
    • Fetch a post
      GET
    • Delete a post
      DELETE
    • Fetch posts
      GET
  • Schemas
    • Schemas
      • Requests
        • Posts
          • PostRequest
      • DTOs
        • Schedule
          • OneOffSchedule
          • RecurringSchedule
          • WeekDayMapping
        • Files
          • FileData
        • Posts
          • PlatformPosts
            • Settings
              • BlueskyPostSettings
              • YouTubePostSettings
            • PlatformPost
          • PostTargetPlatform
          • Post
        • Workspaces
          • Workspace
        • Channels
          • Channel
  1. Posts

PostRequest

{
    "text": "string",
    "timezone": "string",
    "media": [
        {
            "url": "string",
            "type": "string"
        }
    ],
    "target_platforms": [
        {
            "identifier": "string",
            "id": "string"
        }
    ],
    "workspace": "string",
    "one_off_schedule": {
        "one_off_date": "string",
        "time": "string",
        "timezone": "string"
    },
    "recurring_schedule": {
        "expression": "string",
        "start_date": "string",
        "end_date": "string",
        "time": "string",
        "timezone": "string",
        "week_days": {
            "num": "string",
            "value": true
        },
        "day_of_month": 0,
        "rate_value": 0,
        "rate_unit": "string"
    },
    "platform_posts": [
        {
            "identifier": "string",
            "text_override": "string",
            "media_override": [
                {
                    "url": "string",
                    "type": "string"
                }
            ],
            "settings": {
                "identifier": "string",
                "tags": [
                    "string"
                ],
                "language_tags": "string",
                "one_off_schedule": {
                    "one_off_date": "string",
                    "time": "string",
                    "timezone": "string"
                },
                "recurring_schedule": {
                    "expression": "string",
                    "start_date": "string",
                    "end_date": "string",
                    "time": "string",
                    "timezone": "string",
                    "week_days": {
                        "num": "string",
                        "value": true
                    },
                    "day_of_month": 0,
                    "rate_value": 0,
                    "rate_unit": "string"
                }
            }
        }
    ]
}
Built with