LianLian Global Statement API

The Statement API from LianLian Global — 1 operation(s) for statement.

Specifications

Other Resources

🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/b2b-cross-border/ZG9jOjQ1Mg-open-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/B2B-inflow-payout/ZG9jOjQ1Mg-open-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/llp-api/4b402d5ab3edd-api-introduction-v1-2
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/cards-open-api/4b402d5ab3edd-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/connect/ydcoebflkrejd-connect-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/connect-ota/4b402d5ab3edd-open-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/lppe/72b66de24898e-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout-ka/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout-service/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/outbound-payout-verification/ztrytr7ruzey9-balance-api
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/llg-payments/4b402d5ab3edd-summary
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/global-payout/ZG9jOjQ1Mg-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/global-payout-fx/e13ca9b34d037-exchange
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/global-payout-tuition/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/standard-remittance/4b402d5ab3edd-api-introduction
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/triplink/d04slm5ra253f-
🔗
DeveloperPortal
https://developer.lianlianglobal.com/docs/e-wallet-openapi/72b66de24898e-introduction

OpenAPI Specification

lianlian-global-statement-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Distribution Account Statement API
  version: '1.0'
host: global-api-sandbox.lianlianpay-inc.com
basePath: /b2b-import/v1
schemes:
- https
consumes:
- application/json
produces:
- application/json
tags:
- name: Statement
paths:
  /v1/statement/transactions:
    parameters: []
    get:
      summary: 账户资金流水查询
      tags:
      - Statement
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Statement'
                  page_size:
                    type: integer
                    description: 每页条数
                  page:
                    description: 当前页码
                    type: integer
                  total_count:
                    type: integer
                    description: 总条数
        '400':
          description: Bad Request
      operationId: get-v1-statement
      description: ''
      parameters:
      - schema:
          type: string
          maxLength: 32
        in: query
        name: account_id
        description: 账户号
      - schema:
          type: string
        in: query
        name: begin_time
        description: 开始时间,10位 秒级时间戳
      - schema:
          type: string
        in: query
        name: end_time
        description: 结束时间,10位 秒级时间戳
      - schema:
          type: integer
          maximum: 8
        in: query
        name: page
        description: 页码,默认值为1
      - schema:
          type: integer
          maximum: 8
        in: query
        name: page_size
        description: 每页查询数量,默认值20
components:
  schemas:
    Statement:
      title: Statement
      x-stoplight:
        id: lvtk50rja7ekx
      type: object
      description: 账户流水
      properties:
        bill_number:
          type: string
          description: 账单流水
          maxLength: 32
        fund_direction:
          type: string
          description: '资金流向 '
          enum:
          - CREDIT
          - DEBIT
          maxLength: 8
        currency:
          type: string
          maxLength: 3
        transaction_amount:
          type: string
          description: 交易金额
          maxLength: 16
        balance:
          type: string
          description: 可用余额
          maxLength: 16
        account_date:
          type: string
          description: 账务日期,YYYYMMDD
        remark:
          type: string
          description: 备注
          maxLength: 512
        transaction_time:
          type: string
          description: 交易时间,10位秒级时间戳
      required:
      - bill_number
      - fund_direction
      - currency
      - transaction_amount
      - balance
      - account_date
      - transaction_time