LianLian Global Webhooks API

The Webhooks API from LianLian Global — 2 operation(s) for webhooks.

Operations 4

GET /webhooks Get Webhook Registration List #
POST /webhooks Register Webhook #
GET /webhooks/{webhookId} Get Webhook Registration #
DELETE /webhooks/{webhookId} Delete Webhook Registration #

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

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lianlian-global-webhooks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lianlian-global-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Webhooks API
  version: '1.0'
  contact:
    email: fx_support@lianlianpay.com
  description: "This section contains operations and models of LianLian Global Webhook service. \n\nWebhook is a common service shared by multiple LianLian Global products, and all operations of this service are hosted in China.\n\nProduction Endpoint - **global-api.lianlianpay.com**"
servers:
- url: https://global-api-sandbox.lianlianpay-inc.com/common/v1
  description: Sandbox
- url: https://global-api.lianlianpay.com/common/v1
  description: Online
tags:
- name: Webhooks
paths:
  /webhooks:
    parameters: []
    get:
      summary: Get Webhook Registration List
      tags:
      - Webhooks
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/webhook'
              examples:
                Example 1:
                  value:
                    id: '202301014783376'
                    url: https://global-api-sandbox.lianlianpay-inc.com
                    topic: outbound.funding.funded
                    createTime: '2023-01-01T10:15:22Z'
      operationId: get-webhook-registration-list
      description: 'Get a list of webhook registrations of a client. If no registrations, empty list will be returned.


        Return type is List<`Webhook`>'
      x-stoplight:
        id: 6kew4nuburweb
    post:
      summary: Register Webhook
      operationId: post-webhooks
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/webhook'
              examples:
                Example 1:
                  value:
                    id: '202301014783376'
                    url: https://global-api-sandbox.lianlianpay-inc.com
                    topic: outbound.funding.funded
                    createTime: '2023-01-01T10:15:22Z'
        '400':
          description: 'Bad Request

            Possible error codes:


            | Code | Description |

            |------|-------------|

            | 999995 | \[PARAMETER\] ERROR_MESSAGE |

            | 108012 | Duplicate Webhook Registration |'
          content:
            application/json:
              schema:
                type: object
                description: Failed object in LianLian Global's system
                properties:
                  code:
                    type: string
                    x-stoplight:
                      id: kzoo21dzzomta
                  message:
                    type: string
                    x-stoplight:
                      id: op9s7jvj4eopi
                  httpCode:
                    type: string
                    x-stoplight:
                      id: 3eolof69kmysd
                required:
                - code
                - message
                - httpCode
            application/xml:
              schema:
                type: object
                properties: {}
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                description: Error object in LianLian Global's system
                properties:
                  code:
                    type: string
                    x-stoplight:
                      id: u288z82c8r38j
                  message:
                    type: string
                    x-stoplight:
                      id: txki5g6jb84mz
                  httpCode:
                    type: string
                    x-stoplight:
                      id: bcuxogfz6vnh7
                required:
                - code
                - message
                - httpCode
              examples:
                Example 1:
                  value:
                    code: '500000'
                    message: Internal Server Error, Contact LianLian Global for technical support
                    httpCode: '500'
      x-stoplight:
        id: 90mva0enqzi93
      description: '*Register a webhook in LianLian Global''s system. Registered webhook will be used to send events generated by LianLian Global''s system.*<br>在连连国际系统中注册一个webhook。已注册的webhook将用于发送由连连国际系统生成的事件。


        Return type is `Webhook` object.'
      parameters:
      - schema:
          type: string
        in: header
        name: Idempotency-Key
        description: '**Optional**A unique value generated by the client which the server uses to recognize subsequent retries of the same request.'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                url:
                  type: string
                  x-stoplight:
                    id: kznmvvdef1cl9
                  maxLength: 64
                  description: Webhook callback url
                topic:
                  type: string
                  x-stoplight:
                    id: koy96fsby537p
                  description: 'Event topics defined in LianLian Global''s system.


                    | Topic | Description |

                    |--------|------------|

                    | outbound.payer.approved |  payer approved |

                    | outbound.payer.rejected  |  payer reject |'
              required:
              - url
              - topic
        description: ''
      tags:
      - Webhooks
  /webhooks/{webhookId}:
    parameters:
    - schema:
        type: string
      name: webhookId
      in: path
      required: true
    get:
      summary: Get Webhook Registration
      operationId: get-webhooks-webhookId
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/webhook'
              examples:
                Example 1:
                  value:
                    id: '202301014783376'
                    url: https://global-api-sandbox.lianlianpay-inc.com
                    topic: outbound.funding.funded
                    createTime: '2023-01-01T10:15:22Z'
      x-stoplight:
        id: 8zd5naoj2nce2
      description: '*Get a webhook registration details by `webhookId`.*


        Return type is `Webhook` object'
      tags:
      - Webhooks
    delete:
      summary: Delete Webhook Registration
      operationId: delete-webhooks-webhookId
      responses:
        '200':
          description: OK
      x-stoplight:
        id: 1gk3vftkvxe8v
      description: '*Delete a webhook registration by `webhookId`.*'
      tags:
      - Webhooks
components:
  schemas:
    webhook:
      title: Webhook
      type: object
      description: 'Object used in LianLian Global''s system to describe the client registration of event callbacks.<br>

        对象,用于描述事件回调的客户端注册。<br>

        LianLian Global uses this object to identify events which should be pushed back to client''s url.<br>

        连连国际使用这个对象来识别应该推回到客户端url的事件。'
      examples:
      - id: '202301014783376'
        url: https://global-api-sandbox.lianlianpay-inc.com
        topic: outbound.funding.funded
        createTime: '2023-01-01T10:15:22Z'
      x-stoplight:
        id: g54gw9kbk86e5
      properties:
        id:
          type: string
          description: Webhook registration id in LianLian Global's system
          x-stoplight:
            id: qwdp1ope8k27l
          maxLength: 32
        url:
          type: string
          x-stoplight:
            id: zn7ihzytz18s1
          description: Client webhook url
          maxLength: 64
        topic:
          type: string
          x-stoplight:
            id: 5g9j9zgbb5xjm
          description: 'Event topics defined in LianLian Global''s system.


            | Topic | Description |

            |--------|------------|

            | OUTWARD_PAYERINFO_RESPONSE |  Payer KYC result notification |

            | OUTWARD_TRADEFILE_RESPONSE  |  Trade file audit result notification |

            | OUTWARD_ORDER_RESPONSE  |  Transaction processing result notification |'
        createTime:
          type: string
          format: date-time
          description: Webhook registration time, UTC+0 timestamp
          x-stoplight:
            id: eba0udmswhw2t
      required:
      - id
      - url
      - topic
      - createTime
x-stoplight:
  id: 3jiywij5kydqq