LianLian Global Ew Receipts API

The Ew Receipts API from LianLian Global — 1 operation(s) for ew receipts.

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-receipts-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Distribution Account Ew Receipts 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 Receipts
paths:
  /ew-receipts/{id}:
    parameters:
    - schema:
        type: string
      name: id
      in: path
      required: true
      description: Transaction ID
    get:
      summary: Get Receipt Info by ID
      tags:
      - Ew Receipts
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Receipt'
              examples:
                example-1:
                  value:
                    fee: string
                    receive_amount: string
                    receive_currency: string
                    payer_source_id_type: EMAIL
                    payer_source_id: string
                    account_no: string
                    context: string
                    payer_name: string
                    payee_source_id: string
                    id: string
                    message: string
                    user_id: string
                    create_time: string
                    name: string
                    status: PROCESSING
        '404':
          description: Transaction Not Found
      operationId: get-receipt-by-id
      description: Get Receipt by transaction ID.
components:
  schemas:
    Receipt:
      type: object
      x-tags:
      - Models
      title: Receipt
      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: Unique identifier of the LianLian Global account.
        receive_amount:
          type: string
          description: The receive amount, main currency unit, rounded up to 2 decimal places.
        receive_currency:
          type: string
          description: The receive currency (in three-letter [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) format).
        payer_name:
          type: string
          description: Name of payer.
        payer_source_id_type:
          type: string
          description: Payer's email or mobile.
          enum:
          - EMAIL
          - MOBILE
        payer_source_id:
          type: string
          description: Payer's email or mobile.
        fee:
          type: string
          description: The Receipt fee amount, main currency unit, rounded up to 2 decimal places.
        context:
          type: string
        payee_source_id:
          type: string
          description: Payee's email or mobile.
        name:
          type: string
          description: Name of receipt from.
        message:
          type: string
          description: This is the postscript information from payer.
        user_id:
          type: string
          description: Unique identifier of the User.
        status:
          type: string
          description: Status of Receipt.
          enum:
          - PROCESSING
          - FAILED
          - CANCELLED
          - REFUNDING
          - REFUNDED
          - COMPLETED
        create_time:
          description: 'The object creation time. Measured in milliseconds since the Unix epoch. It''s a `long` type number. '
          type: integer