schedule_linkedin_post
Schedule LinkedIn posts for specific future dates and times, with optional media attachments via URLs. Automates publishing to maintain consistent content delivery on LinkedIn.
Instructions
Schedule a text post for LinkedIn at a specific future date and time, optionally including media (images/videos) specified by URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
media | No | Optional. A list of media items to attach to the post. Each item must have a 'file_url' pointing to a direct image or video URL and a 'filename'. | |
post_text | Yes | The text content of the LinkedIn post to be scheduled. | |
scheduled_date | Yes | The date and time to publish the post, in ISO 8601 format (e.g., '2025-12-31T10:00:00Z' or '2025-12-31T15:30:00+05:30'). Must be in the future. |
Input Schema (JSON Schema)
{
"properties": {
"media": {
"description": "Optional. A list of media items to attach to the post. Each item must have a 'file_url' pointing to a direct image or video URL and a 'filename'.",
"items": {
"properties": {
"file_url": {
"description": "A direct URL to the image or video file (e.g., ending in .jpg, .png, .mp4).",
"type": "string"
},
"filename": {
"description": "A filename for the media item (e.g., 'meeting_notes.mp4').",
"type": "string"
}
},
"required": [
"file_url",
"filename"
],
"type": "object"
},
"type": "array"
},
"post_text": {
"description": "The text content of the LinkedIn post to be scheduled.",
"type": "string"
},
"scheduled_date": {
"description": "The date and time to publish the post, in ISO 8601 format (e.g., '2025-12-31T10:00:00Z' or '2025-12-31T15:30:00+05:30'). Must be in the future.",
"type": "string"
}
},
"required": [
"post_text",
"scheduled_date"
],
"type": "object"
}