messagebird · Schema

ConversationUpdate

Properties

Name Type Description
status string The new status for the conversation.
View JSON Schema on GitHub

JSON Schema

messagebird-conversationupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConversationUpdate",
  "title": "ConversationUpdate",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The new status for the conversation.",
      "enum": [
        "active",
        "archived"
      ]
    }
  }
}