LianLian Global Ew Withdrawals API

The Ew Withdrawals API from LianLian Global — 1 operation(s) for ew withdrawals.

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-ew-withdrawals-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Distribution Account Ew Withdrawals 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: Ew Withdrawals
paths:
  /ew-withdrawals/{id}:
    parameters:
    - schema:
        type: string
      name: id
      in: path
      required: true
      description: transaction ID
    get:
      summary: Get Withdrawal Info by ID
      tags:
      - Ew Withdrawals
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Withdrawal'
              examples: {}
        '404':
          description: Not Found
      operationId: get-withdrawals-ID
      description: Retrieve the information of the Withdrawal transaction with the matching ID.
components:
  schemas:
    Withdrawal:
      type: object
      x-examples:
        example-1:
          id: '220500731206'
          business_order_id: '220500731206'
          user_id: '2022042512674869'
          fee: '0.00'
          receive_currency: USD
          receive_amount: '111.00'
          pay_currency: USD
          pay_amount: '111.00'
          account_no: 0201002580250
          estimate: false
          name: Franklin Music
          fail_code: ''
          fail_reason: ''
          create_time: 1650879380000
          modify_time: 1650879380000
          status: COMPLETE
      x-tags:
      - Models
      properties:
        id:
          type: string
          description: Unique ID created by the LianLian Global.
        business_order_id:
          type: string
          description: Business Order ID.
        account_id:
          type: string
          description: The Balance Account ID actually paid by.
        receive_currency:
          type: string
          description: The receive currency (in three-letter [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) format).
        receive_amount:
          type: string
          description: The received amount, main currency unit, rounded up to 2 decimal places.
        pay_currency:
          type: string
          description: The currency actually paid (in three-letter [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) format).
        pay_amount:
          type: string
          description: The amount actually paid, main currency unit, rounded up to 2 decimal places.
        fee:
          type: string
          description: The fee amount, main currency unit, rounded up to 2 decimal places.
        estimate:
          type: boolean
          description: Whether it is an estimated amount.
        failure_code:
          type: string
          description: This field occurs when an error occurs during withdrawal.
        failure_reason:
          type: string
          description: This field occurs when an error occurs during withdrawal.
        status:
          type: string
          description: The withdrawal status.
          enum:
          - PROCESSING
          - FAILED
          - CANCELLED
          - REFUNDING
          - REFUNDED
          - COMPLETED
        user_id:
          type: string
          description: Unique identifier of the User.
        create_time:
          type: integer
          description: The object creation time. Measured in milliseconds since the Unix epoch.
        bank_info:
          $ref: ./CommonModel.json#/components/schemas/Bank
        conversion:
          $ref: ./CommonModel.json#/components/schemas/ConversionBasicInfo
      title: Withdrawal