LianLian Global Topup API

The Topup API from LianLian Global — 2 operation(s) for topup.

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-topup-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Distribution Account Topup 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: Topup
paths:
  /v1/topup:
    parameters: []
    get:
      summary: 充值分页查询
      operationId: post-v1-topup-get_topup_list
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Topup'
                  page_size:
                    type: integer
                    description: 每页条数
                  page:
                    description: 当前页码
                    type: integer
                  total_count:
                    type: integer
                    description: 总条数
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: ./Account.yaml#/components/schemas/Funding
      description: 充值信息分页查询。
      parameters:
      - schema:
          type: string
          maxLength: 32
        in: query
        name: account_number
        description: 虚拟卡号
      - schema:
          type: string
          maxLength: 128
        in: query
        name: currency_list
        description: 币种列表,币种列表 例如:["USD","JPY"] 参考: https://www.iso.org/iso-4217-currency-codes.html
      - 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
      tags:
      - Topup
  /v1/topup/{topup_id}:
    parameters:
    - schema:
        type: string
      name: topup_id
      in: path
      required: true
    get:
      summary: 充值详情查询
      tags:
      - Topup
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Topup'
        '400':
          description: Bad Request
      operationId: get-v1-topup-get_topup
      parameters: []
      description: ''
components:
  schemas:
    Topup:
      title: Topup
      x-stoplight:
        id: ol0ivbum2debu
      type: object
      description: 充值信息
      properties:
        topup_id:
          type: string
          description: 充值单id
          maxLength: 32
        currency:
          type: string
          description: 币种  参考:https://www.iso.org/iso-4217-currency-codes.html
          maxLength: 3
        amount:
          type: string
          description: 充值金额,单位元
          maxLength: 16
        payer_name:
          type: string
          description: 付款人名称
          maxLength: 256
        payer_bank_account_number:
          type: string
          description: 付款人银行账号
          maxLength: 128
        payer_bank_name:
          type: string
          description: 付款人银行名称
          maxLength: 256
        payer_bank_route_code:
          type: string
          description: 付款人银行路由号
          maxLength: 32
        trade_memo:
          type: string
          description: 附言
          maxLength: 256
        status:
          type: string
          description: 状态
          enum:
          - SUCCEEDED
          - PENDING
          - HEGDED
          maxLength: 16
        create_time:
          type: string
          description: 创建时间 10位 秒级时间戳
        modify_time:
          type: string
          description: 更新时间 10位 秒级时间戳
      required:
      - topup_id
      - currency
      - amount
      - payer_name
      - status
      - create_time
      - modify_time