action svix_list_messages_api_v1_app_app_id_msg_get { label: "List Messages" description: "List all of the application's messages.\n\nThe `before` parameter lets you filter all items created before a certain date and is ignored if an iterator is passed.\nThe `after` parameter lets you filter all items created after a certain date and is ignored if an iterator is passed.\n`before` and `after` cannot be used simultaneously." provider: svix method: GET path: "/api/v1/app/{app_id}/msg/" encoding: json input: { type: "object" properties: { after: { type: "string" format: "date-time" } app_id: { type: "string" description: "The application's ID or UID" } before: { type: "string" format: "date-time" } channel: { type: "string" } event_types: { type: "array" items: { type: "string" } } "idempotency-key": { type: "string" description: "The request's idempotency key" } iterator: { type: "string" } limit: { type: "integer" } } required: ["app_id"] additionalProperties: false } output: { type: "object" required: ["data", "done"] properties: { data: { type: "array" items: { type: "object" required: ["eventType", "payload", "id", "timestamp"] properties: { channels: { type: "array" description: "List of free-form identifiers that endpoints can filter by" items: { type: "string" } } eventId: { type: "string" description: "Optional unique identifier for the message" } eventType: { type: "string" } id: { type: "string" } payload: { type: "object" } timestamp: { type: "string" format: "date-time" } } } } done: { type: "boolean" } iterator: { type: "string" } prevIterator: { type: "string" } } } }