Facebook · Schema

SendMessageResponse

Response from sending a message.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
recipient_id string Recipient user ID.
message_id string Sent message ID.
View JSON Schema on GitHub

JSON Schema

facebook-sendmessageresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SendMessageResponse",
  "title": "SendMessageResponse",
  "type": "object",
  "description": "Response from sending a message.",
  "properties": {
    "recipient_id": {
      "type": "string",
      "description": "Recipient user ID.",
      "example": "100001234567890"
    },
    "message_id": {
      "type": "string",
      "description": "Sent message ID.",
      "example": "mid.1234567890"
    }
  }
}