LianLian Global Member API

The Member API from LianLian Global — 1 operation(s) for member.

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-member-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Distribution Account Member 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: Member
paths:
  /v1/member/register:
    parameters: []
    post:
      summary: 创建用户
      operationId: post-member
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Member'
              examples:
                example-1:
                  value:
                    member_id: string
                    member_type: MASTER
                    status: INIT
                    create_time: string
                    modify_time: string
          headers: {}
        '400':
          description: Missing Required Information
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                member_id:
                  type: string
                  description: 主会员id(uniqueId)
                  maxLength: 32
                member_type:
                  type: string
                  description: 会员类型,主账户:MASTER ,子账户: SUB
                  enum:
                  - MASTER
                  - SUB
                  maxLength: 8
              required:
              - member_id
              - member_type
            examples:
              example-1:
                value:
                  member_id: string
                  member_type: MASTER
        description: ''
      description: Create a new member.
      parameters: []
      tags:
      - Member
components:
  schemas:
    Member:
      title: Member
      x-stoplight:
        id: gyihh8tndv5t0
      type: object
      description: ''
      x-internal: false
      properties:
        member_id:
          type: string
          description: 主会员id(uniqueId)
          maxLength: 32
        member_type:
          type: string
          description: 平台创建会员类型 主会员:MASTER ,子会员: SUB
          enum:
          - MASTER
          - SUB
          maxLength: 8
        status:
          type: string
          description: '初始化:INIT;

            激活:ACTIVE'
          enum:
          - INIT
          - ACTIVE
          maxLength: 8
        create_time:
          type: string
          description: 创建时间,10位 秒级时间戳
        modify_time:
          type: string
          description: 更新时间,10位 秒级时间戳