Sendbird · Schema

Sendbird Message

A message sent in a Sendbird channel.

Properties

Name Type Description
message_id integer Unique identifier of the message.
type string Type of message: MESG (text), FILE (file), ADMM (admin).
message string Text content of the message.
channel_url string URL of the channel containing this message.
created_at integer Unix timestamp (milliseconds) when the message was sent.
updated_at integer Unix timestamp (milliseconds) when the message was last updated.
custom_type string Custom type for message categorization.
data string Custom data string attached to the message.
mention_type string Type of user mention: 'users' for specific users, 'channel' for all members.
mentioned_users array Users mentioned in the message.
View JSON Schema on GitHub

JSON Schema

sendbird-message-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/sendbird/json-schema/sendbird-message-schema.json",
  "title": "Sendbird Message",
  "description": "A message sent in a Sendbird channel.",
  "type": "object",
  "properties": {
    "message_id": {
      "type": "integer",
      "description": "Unique identifier of the message."
    },
    "type": {
      "type": "string",
      "description": "Type of message: MESG (text), FILE (file), ADMM (admin).",
      "enum": ["MESG", "FILE", "ADMM"]
    },
    "message": {
      "type": "string",
      "description": "Text content of the message."
    },
    "channel_url": {
      "type": "string",
      "description": "URL of the channel containing this message."
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp (milliseconds) when the message was sent."
    },
    "updated_at": {
      "type": "integer",
      "description": "Unix timestamp (milliseconds) when the message was last updated."
    },
    "custom_type": {
      "type": "string",
      "description": "Custom type for message categorization."
    },
    "data": {
      "type": "string",
      "description": "Custom data string attached to the message."
    },
    "mention_type": {
      "type": "string",
      "description": "Type of user mention: 'users' for specific users, 'channel' for all members.",
      "enum": ["users", "channel"]
    },
    "mentioned_users": {
      "type": "array",
      "description": "Users mentioned in the message.",
      "items": {
        "type": "object",
        "properties": {
          "user_id": {"type": "string"},
          "nickname": {"type": "string"}
        }
      }
    }
  },
  "required": ["message_id", "type", "channel_url", "created_at"]
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/sendbird-message"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.