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

# Get Zelle Transactions

> Get Zelle Transactions for a specified user



## OpenAPI

````yaml GET /zelle/transactions/{user_id}
openapi: 3.1.0
info:
  title: Sturdy Technologies API
  description: API documentation for Sturdy Technologies Service
  contact: {}
  version: '1.0'
servers:
  - url: https://sandbox.sturdytechnologies.com/v3
    description: Sandbox server
security: []
paths:
  /zelle/transactions/{user_id}:
    get:
      tags:
        - Zelle
      summary: Get Zelle Transactions
      description: Get Zelle Transactions for a specified user
      operationId: getZelleTransactions
      parameters:
        - name: user_id
          in: path
          description: User Identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ZelleTransactionsResp'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResp'
      security:
        - BearerAuth: []
components:
  schemas:
    ZelleTransactionsResp:
      type: object
      properties:
        data:
          type: object
          properties:
            items:
              type: array
              items:
                type: object
                properties:
                  amount:
                    type: number
                    example: 100.5
                  transaction_date:
                    type: string
                    example: '2023-10-01T12:34:56Z'
                  transaction_id:
                    type: string
                    example: txn_12345
            page:
              type: integer
            total_count:
              type: integer
            total_pages:
              type: integer
        message:
          type: string
          example: Zelle transactions retrieved successfully
        success:
          type: boolean
          example: true
    ErrorResp:
      type: object
      properties:
        message:
          type: string
          example: Invalid request
        success:
          type: boolean
          example: false

````