Basecamp · JSON Structure

Messagecreaterequest Structure

Type: record Properties: 0
CollaborationProject ManagementRESTSaaSTeam Communication

Messagecreaterequest Structure is a JSON Structure definition published by Basecamp. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/basecamp/json-structure/messagecreaterequest-structure.json",
  "title": "MessageCreateRequest",
  "type": "record",
  "members": [
    {
      "name": "subject",
      "type": "string",
      "description": "Message subject (title)"
    },
    {
      "name": "content",
      "type": "string",
      "description": "Message body in HTML format"
    },
    {
      "name": "status",
      "type": "string",
      "description": "Set to \"active\" to publish immediately"
    },
    {
      "name": "category_id",
      "type": "integer",
      "description": "Optional message category ID"
    },
    {
      "name": "subscriptions",
      "type": "array",
      "description": "Person IDs to notify about this message"
    }
  ]
}