Create Video Post
Overview
The Create Video Post endpoint allows you to schedule and publish video-based posts to one or multiple connected social accounts under a specific category. You can set the post content, attach a video URL, assign it to a category, and define the date and time for scheduling.
Base URL:
https://www.oneupapp.io
Endpoint
POST /api/schedulevideopost?apiKey=YOUR_API_KEY&category_id=CATEGORY_ID&social_network_id=["NETWORK_ID_1","NETWORK_ID_2"]&scheduled_date_time=YYYY-MM-DD HH:MM&title=Your+Post+Title&content=Your post content here&video_url=VIDEO_URL
Example Request:
POST https://www.oneupapp.io/api/schedulevideopost?apiKey=621544d93ffe2db52b01&category_id=49839&social_network_id=["17841408823790514"]&scheduled_date_time=2026-12-12 13:13&title=My+Video+Post&content=Video post from API&video_url=https://cdn.filestackcontent.com/tpVlPE0qT7u4TwyPoA1M
Request Parameters
| Parameter | Required | Description | 
|---|---|---|
| apiKey | Yes | Your personal API key generated from the API Access page. | 
| category_id | Yes | The ID of the category that groups your target social accounts. | 
| social_network_id | Yes | A JSON array of social network IDs where the post will be published. You can also set the value to ALLto publish the post across all accounts enabled for the selected category. | 
| scheduled_date_time | Yes | The date and time (in YYYY-MM-DD HH:MMformat) when the post should be published. | 
| title | No | The title of your post. | 
| content | Yes | The text content of your post. | 
| video_url | Yes | The URL to the video you want to attach to the post. | 
Sample Response
{
  "message": "1 new Posts Scheduled.",
  "error": false,
  "data": []
}
✅ Result: Your video post has been successfully scheduled! The message confirms that the post is queued for publishing at the specified date and time.
Tips & Notes
- Ensure your target social accounts are active and not expired before scheduling.
- The social_network_idmust exactly match the account IDs retrieved from the List Category Accounts or List Social Accounts endpoints.
- The video_urlmust be publicly accessible and point directly to a video file.
- For immediate publishing, set scheduled_date_timeto the current timestamp.
- Avoid overloading with too many simultaneous posts to prevent API rate limiting.
✅ Next Step: Combine this with your category and account lookups to automate the video posting workflow end-to-end.