LianLian Global Payout API

The Payout API from LianLian Global — 2 operation(s) for payout.

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-payout-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Distribution Account Payout 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: Payout
paths:
  /v1/payout:
    post:
      summary: 发起付款
      operationId: post-v1-payout
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Payout'
        '400':
          description: Bad Request
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                transaction_id:
                  type: string
                  description: 交易单号
                  maxLength: 32
                transaction_type:
                  type: string
                  description: 交易类型
                  enum:
                  - WITHDRAW
                  - PAYMENT
                  maxLength: 12
                member_id:
                  type: string
                  description: 出账会员id
                  maxLength: 32
                pricing_currency:
                  type: string
                  description: '定价币种,3位,参考:

                    https://www.iso.org/iso-4217-currency-codes.html'
                source_currency:
                  type: string
                  description: '出账币种,3位,参考:

                    https://www.iso.org/iso-4217-currency-codes.html'
                source_amount:
                  type: string
                  description: 出账金额,如果pricing_currency= source_currency则必填
                  maxLength: 16
                target_currency:
                  type: string
                  description: '入账币种,3位,参考:

                    https://www.iso.org/iso-4217-currency-codes.html'
                target_amount:
                  type: string
                  description: 入账金额,如果pricing_currency= target_currency则必填
                  maxLength: 16
                commission_undertaker:
                  type: string
                  description: 手续费承担方
                  enum:
                  - PAYER
                  - PAYEE
                  maxLength: 6
                payee_bank_account_number:
                  type: string
                  description: 收款人银行卡号
                  maxLength: 64
                payee_bank_country_code:
                  type: string
                  description: 收款人银行所在国家,2位,参考https://www.iso.org/iso-3166-country-codes.html
                payment_method:
                  type: string
                  enum:
                  - SWIFT
                  - LOCAL
                  description: 付款方式
                  maxLength: 12
                routing_type:
                  type: string
                  description: 路由号类型,`paymentMethod`=`LOCAL`时必传
                  maxLength: 16
                routing_number:
                  type: string
                  description: 路由号
                  maxLength: 32
                swift_code:
                  type: string
                  description: Swift code
                  maxLength: 11
                bank_name:
                  type: string
                  description: 银行名称
                  maxLength: 64
                trade_memo:
                  type: string
                  description: 交易附言
                  maxLength: 256
                trade_file_id:
                  type: string
                  description: 贸易材料id
                  maxLength: 64
              required:
              - transaction_id
              - transaction_type
              - member_id
              - pricing_currency
              - source_currency
              - target_currency
              - commission_undertaker
              - payee_bank_account_number
              - payee_bank_country_code
              - bank_name
      tags:
      - Payout
  /v1/payout/{transaction_id}:
    parameters:
    - schema:
        type: string
      name: transaction_id
      in: path
      required: true
    get:
      summary: 查询付款详情
      tags:
      - Payout
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Payout'
      operationId: get-v1-payout-transaction_id
components:
  schemas:
    Payout:
      title: Payout
      x-stoplight:
        id: b8r11rekmoc1h
      type: object
      description: 付款
      properties:
        transaction_id:
          type: string
          description: 交易单号
          maxLength: 32
        transaction_type:
          type: string
          description: 交易类型
          maxLength: 12
        member_id:
          type: string
          description: 出账会员id
          maxLength: 32
        pricing_currency:
          type: string
          description: 定价币种,3位,参考https://www.iso.org/iso-4217-currency-codes.html
        source_currency:
          type: string
          description: 出账币种,3位,参考https://www.iso.org/iso-4217-currency-codes.html
        source_amount:
          type: string
          description: 出账金额
          maxLength: 16
        target_currency:
          type: string
          description: 入账币种,3位,参考https://www.iso.org/iso-4217-currency-codes.html
        target_amount:
          type: string
          description: 入账金额
          maxLength: 16
        commission_undertaker:
          type: string
          description: 手续费承担方
          maxLength: 6
        payee_bank_account_number:
          type: string
          description: 收款人银行卡号
          maxLength: 64
        payee_bank_country_code:
          type: string
          description: 收款人银行code,2位
        payment_method:
          type: string
          description: 付款方式
          maxLength: 12
        routing_type:
          type: string
          description: 路由号类型
          maxLength: 16
        routing_number:
          type: string
          description: 路由号
          maxLength: 32
        swift_code:
          type: string
          description: Swift code
          maxLength: 11
        bank_name:
          type: string
          description: 银行名称
          maxLength: 64
        trade_memo:
          type: string
          description: 交易附言
          maxLength: 256
        trade_file_id:
          type: string
          description: 贸易材料id
          maxLength: 64
        rate:
          type: string
          description: 汇率
          maxLength: 16
        status:
          type: string
          description: 状态
          maxLength: 16
        failed_reason:
          type: string
          description: 失败原因
          maxLength: 128
        create_time:
          type: string
          description: 创建时间,10位 秒级时间戳
        modify_time:
          type: string
          description: 修改时间,10位 秒级时间戳