Mattermost Posts API

The Posts API from Mattermost — 9 operation(s) for posts.

Operations 11

GET /channels/{channel_id}/posts List posts in a channel
POST /posts Create a post
POST /posts/ephemeral Create an ephemeral post
GET /posts/{post_id} Get a post
PUT /posts/{post_id} Update a post
DELETE /posts/{post_id} Delete a post
PUT /posts/{post_id}/patch Patch a post
GET /posts/{post_id}/thread Get a thread by post id
POST /posts/{post_id}/pin Pin a post
POST /posts/{post_id}/unpin Unpin a post
POST /teams/{team_id}/posts/search Search posts in a team

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mattermost-posts-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mattermost-posts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mattermost REST Channels Posts API
  version: '4'
  description: 'Mattermost REST API v4 for managing users, teams, channels, posts, threads,

    files, integrations, plugins, webhooks, slash commands, and OAuth

    applications on a self-hosted or cloud Mattermost server. Authentication

    uses Personal Access Tokens or session tokens carried as a Bearer token.

    '
  contact:
    name: Mattermost API Documentation
    url: https://developers.mattermost.com/api-documentation
servers:
- url: https://{your-mattermost-server}/api/v4
  description: Self-hosted Mattermost server
  variables:
    your-mattermost-server:
      default: your-mattermost-server.com
      description: Hostname of your Mattermost server
security:
- bearerAuth: []
tags:
- name: Posts
paths:
  /channels/{channel_id}/posts:
    get:
      tags:
      - Posts
      summary: List posts in a channel
      parameters:
      - in: path
        name: channel_id
        required: true
        schema:
          type: string
      - in: query
        name: page
        schema:
          type: integer
          default: 0
      - in: query
        name: per_page
        schema:
          type: integer
          default: 60
      - in: query
        name: since
        schema:
          type: integer
      responses:
        '200':
          description: Post list
  /posts:
    post:
      tags:
      - Posts
      summary: Create a post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Post'
      responses:
        '201':
          description: Post created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Post'
  /posts/ephemeral:
    post:
      tags:
      - Posts
      summary: Create an ephemeral post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                user_id:
                  type: string
                post:
                  $ref: '#/components/schemas/Post'
      responses:
        '201':
          description: Ephemeral post created
  /posts/{post_id}:
    parameters:
    - in: path
      name: post_id
      required: true
      schema:
        type: string
    get:
      tags:
      - Posts
      summary: Get a post
      responses:
        '200':
          description: Post
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Post'
    put:
      tags:
      - Posts
      summary: Update a post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Post'
      responses:
        '200':
          description: Updated post
    delete:
      tags:
      - Posts
      summary: Delete a post
      responses:
        '200':
          description: Deleted
  /posts/{post_id}/patch:
    put:
      tags:
      - Posts
      summary: Patch a post
      parameters:
      - in: path
        name: post_id
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Post'
      responses:
        '200':
          description: Patched post
  /posts/{post_id}/thread:
    get:
      tags:
      - Posts
      summary: Get a thread by post id
      parameters:
      - in: path
        name: post_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Thread
  /posts/{post_id}/pin:
    post:
      tags:
      - Posts
      summary: Pin a post
      parameters:
      - in: path
        name: post_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Pinned
  /posts/{post_id}/unpin:
    post:
      tags:
      - Posts
      summary: Unpin a post
      parameters:
      - in: path
        name: post_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Unpinned
  /teams/{team_id}/posts/search:
    post:
      tags:
      - Posts
      summary: Search posts in a team
      parameters:
      - in: path
        name: team_id
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                terms:
                  type: string
                is_or_search:
                  type: boolean
      responses:
        '200':
          description: Search results
components:
  schemas:
    Post:
      type: object
      properties:
        id:
          type: string
        channel_id:
          type: string
        user_id:
          type: string
        message:
          type: string
        type:
          type: string
        props:
          type: object
        root_id:
          type: string
        create_at:
          type: integer
        update_at:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Personal Access Token or session token issued by /users/login.