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

# Query All Card Transactions Under Agency



## OpenAPI

````yaml /CARDPLUS-API.json post /wallet/api/cardTrans/all
openapi: 3.0.3
info:
  description: Wallet API Documentation
  version: '2.0'
  title: Wallet API Documentation
servers:
  - url: http://access-wallet.test.ftrader.pro
    description: Test development server
security: []
tags:
  - name: General
    description: General common APIs
  - name: Address Management
    description: User address CRUD operations
  - name: Agency Management
    description: Agency-related operations including card application and asset management
  - name: Asset Management
    description: User asset list and asset transfer operations
  - name: Card Management
    description: >-
      Card operations including activation, locking, balance, top-up, transfers,
      and queries
  - name: Deposit
    description: Deposit and top-up from user assets to card
  - name: KYT
    description: Know Your Transaction check
  - name: User Management
    description: User registration, KYC, card application, and information queries
paths:
  /wallet/api/cardTrans/all:
    post:
      tags:
        - Card Management
      summary: Query All Card Transactions Under Agency
      operationId: cardTransAllUsingPOST
      parameters:
        - name: agencyCode
          in: query
          description: Agency code
          required: true
          schema:
            type: string
        - name: appId
          in: query
          description: App identifier
          required: true
          schema:
            type: string
        - name: appUserId
          in: query
          description: >-
            App user ID; if provided, queries transactions for the specified
            user
          required: true
          schema:
            type: string
        - name: pageNo
          in: query
          description: Page number
          required: true
          schema:
            type: integer
            format: int32
        - name: pageSize
          in: query
          description: Items per page
          required: true
          schema:
            type: integer
            format: int32
        - name: sign
          in: query
          description: Signature
          required: true
          schema:
            type: string
        - name: userEmail
          in: query
          description: >-
            Email; if provided, queries transactions for the specified email
            user
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseAppPageUserCardFlowDTO'
components:
  schemas:
    ResponseAppPageUserCardFlowDTO:
      type: object
      required:
        - code
        - msg
      properties:
        code:
          type: integer
          format: int32
        data:
          $ref: '#/components/schemas/AppPageUserCardFlowDTO'
        msg:
          type: string
    AppPageUserCardFlowDTO:
      type: object
      required:
        - dataTotal
        - haveNext
        - list
      properties:
        dataTotal:
          type: integer
          format: int64
        haveNext:
          type: boolean
        list:
          type: array
          items:
            $ref: '#/components/schemas/UserCardFlowDTO'
    UserCardFlowDTO:
      type: object
      required:
        - appId
        - appUserId
      properties:
        amount:
          type: number
          description: Amount
        appId:
          type: string
          description: App identifier
        appUserId:
          type: string
          description: App user ID
        cardAssetId:
          type: integer
          format: int64
          description: Card asset account ID
        cardId:
          type: integer
          format: int64
          description: User card ID
        createAt:
          type: string
          format: date-time
          description: Transaction creation date
        currency:
          type: string
          description: Currency
        decimalPlaces:
          type: integer
          format: int32
          description: Decimal places
        desc:
          type: string
          description: Transaction description
        feeAmount:
          type: number
          description: Fee amount
        flowNo:
          type: string
          description: Transaction flow identifier
        icon:
          type: string
          description: Icon
        intent:
          type: string
          description: Transaction category
        postedAt:
          type: string
          format: date-time
          description: Transaction completion date
        status:
          type: string
          description: Status
          enum:
            - CREATED
            - FAILURE
            - PENDING
            - REFUNDED
            - SUCCESS
        symbol:
          type: string
          description: Unit symbol
        time:
          type: string
          format: date-time
          description: Date
        title:
          type: string
          description: Title
        totalAmount:
          type: number
          description: Total amount

````