action twitter_dm_conversation_by_id_event_id_create { label: "Send a new message to a DM Conversation" description: "Creates a new message for a DM Conversation specified by DM Conversation ID" provider: twitter method: POST path: "/2/dm_conversations/{dm_conversation_id}/messages" encoding: json input: { type: "object" properties: { dm_conversation_id: { type: "string" } } required: ["dm_conversation_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" required: ["dm_conversation_id", "dm_event_id"] properties: { dm_conversation_id: { type: "string" description: "Unique identifier of a DM conversation. This can either be a numeric string, or a pair of numeric strings separated by a '-' character in the case of one-on-one DM Conversations." } dm_event_id: { type: "string" description: "Unique identifier of a DM Event." } } } errors: { type: "array" items: { type: "object" description: "An HTTP Problem Details object, as defined in IETF RFC 7807 (https://tools.ietf.org/html/rfc7807)." required: ["type", "title"] properties: { detail: { type: "string" } status: { type: "integer" } title: { type: "string" } type: { type: "string" } } } } } } }