> ## Documentation Index
> Fetch the complete documentation index at: https://docs.caratuva.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List notifications dispatched on behalf of the calling org



## OpenAPI

````yaml https://api.caratuva.com/docs-json get /v1/notifications/log
openapi: 3.0.0
info:
  title: Caratuva API
  description: >-
    Cross-border B2B payments. Fiat on-ramp → USDC → PIX off-ramp.


    Every request runs in **test** or **live** mode on this single host — there
    is no separate sandbox URL. API keys carry the mode in their prefix
    (`pk_test_…` / `pk_live_…`); dashboard JWTs start in test and re-mint via
    `POST /v1/auth/switch-mode`. Test mode runs the full pipeline against a
    sandbox payment instance (KYB/KYC auto-approve, no real money); live runs on
    real rails and requires approved KYB. Test and live data are fully isolated.
    Check readiness with `GET /v1/onboarding/status`.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/notifications/log:
    get:
      tags:
        - notifications
      summary: List notifications dispatched on behalf of the calling org
      operationId: NotificationsLogController_list
      parameters:
        - name: limit
          required: false
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 200
        - name: cursor
          required: false
          in: query
          schema: {}
        - name: to
          required: false
          in: query
          description: ISO 8601 upper bound on sentAt
          schema: {}
        - name: from
          required: false
          in: query
          description: ISO 8601 lower bound on sentAt
          schema: {}
        - name: status
          required: false
          in: query
          schema:
            enum:
              - sent
              - delivered
              - opened
              - clicked
              - bounced
              - failed
              - rate_limited
              - template_error
            type: string
        - name: templateId
          required: false
          in: query
          schema: {}
        - name: channel
          required: false
          in: query
          schema:
            enum:
              - email
              - whatsapp
              - sms
              - inApp
            type: string
      responses:
        '200':
          description: Paginated notifications scoped to the caller org
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                  nextCursor:
                    type: string
                    nullable: true

````