Source code for mattermostautodriver.endpoints.scheduled_post

from .base import Base


[docs]class ScheduledPost(Base):
[docs] def create_scheduled_post(self, options=None): """Creates a scheduled post scheduled_at: UNIX timestamp in milliseconds of the time when the scheduled post should be sent channel_id: The channel ID to post in message: The message contents, can be formatted with Markdown root_id: The post ID to comment on file_ids: A list of file IDs to associate with the post. Note that posts are limited to 5 files maximum. Please use additional posts for more files. props: A general JSON property bag to attach to the post `Read in Mattermost API docs (scheduled_post - CreateScheduledPost) <https://api.mattermost.com/#tag/scheduled_post/operation/CreateScheduledPost>`_ """ return self.client.post("""/api/v4/posts/schedule""", options=options)
[docs] def get_user_scheduled_posts(self, params=None): """Gets all scheduled posts for a user for the specified team.. includeDirectChannels: Whether to include scheduled posts from DMs an GMs or not. Default is false `Read in Mattermost API docs (scheduled_post - GetUserScheduledPosts) <https://api.mattermost.com/#tag/scheduled_post/operation/GetUserScheduledPosts>`_ """ return self.client.get(f"/api/v4/posts/scheduled/team/{team_id}", params=params)
[docs] def update_scheduled_post(self, scheduled_post_id, options=None): """Update a scheduled post scheduled_post_id: ID of the scheduled post to update id: ID of the scheduled post to update channel_id: The channel ID to post in user_id: The current user ID scheduled_at: UNIX timestamp in milliseconds of the time when the scheduled post should be sent message: The message contents, can be formatted with Markdown `Read in Mattermost API docs (scheduled_post - UpdateScheduledPost) <https://api.mattermost.com/#tag/scheduled_post/operation/UpdateScheduledPost>`_ """ return self.client.put(f"/api/v4/posts/schedule/{scheduled_post_id}", options=options)
[docs] def delete_scheduled_post(self, scheduled_post_id): """Delete a scheduled post scheduled_post_id: ID of the scheduled post to delete `Read in Mattermost API docs (scheduled_post - DeleteScheduledPost) <https://api.mattermost.com/#tag/scheduled_post/operation/DeleteScheduledPost>`_ """ return self.client.delete(f"/api/v4/posts/schedule/{scheduled_post_id}")