instacart · Schema

SendMessageRequest

Properties

Name Type Description
body string The text content of the message to send to the shopper.
View JSON Schema on GitHub

JSON Schema

instacart-sendmessagerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SendMessageRequest",
  "title": "SendMessageRequest",
  "type": "object",
  "required": [
    "body"
  ],
  "properties": {
    "body": {
      "type": "string",
      "description": "The text content of the message to send to the shopper.",
      "maxLength": 1000
    }
  }
}