WhatsApp · JSON Structure

Whatsapp Flows Api Cursor Paging Structure

CursorPaging from WhatsApp API

Type: object Properties: 2

CursorPaging is a JSON Structure definition published by WhatsApp, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cursors next

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whatsapp/refs/heads/main/json-structure/whatsapp-flows-api-cursor-paging-structure.json",
  "name": "CursorPaging",
  "description": "CursorPaging from WhatsApp API",
  "type": "object",
  "properties": {
    "cursors": {
      "type": "object",
      "properties": {
        "before": {
          "type": "string"
        },
        "after": {
          "type": "string"
        }
      }
    },
    "next": {
      "type": "string",
      "format": "uri",
      "example": "example_value"
    }
  }
}