instant payment confirm API

This API is used to cinfirm the money transfer application.

Request

Endpoint

https://instantpay.lianlianpay.com/paymentapi/confirmPayment.htm

Request Parameters

Name

Required

Type

Description

api_version

Required

String(6)

1.1

oid_partner

Required

String(18)

The unique identification assigned to the merchant. E.g. 201304121000001004

sign_type

Required

String(3)

RSA

sign

Required

String

Signature value, refer to signature document

confirm_code

Required

String(6)

Confirm code.

no_order

Required

String(32)

Original merchant order No.

notify_url

Required

String(128)

Online url where asynchronous notification should be sent, E.g. http://www.lianlianpay.com/help/notify

sample request

The request message before being encrypted.

{
    "api_version":"1.0",
    "confirm_code":"137007",
    "no_order":"20170208165924",
    "notify_url":"http://192.168.110.13:8080/test/tradepayapi/receiveNotify.htm",
    "oid_partner":"201606221000921503",
    "sign":"CLVVqaS39aW9EurgJbljVR3gmti5emt4GJdi0f0edJjvr8k52HBB60cEu7UmiMxtqgm/gVA40OG42ANY96ZiEoiJnAPdBANTK3pJyYq/anw56wrGLLW/HIFiTslnvIpwqtQoSjBaz8h+J2aSXzFPywG6WXFsLyAb/NUJSCSb6dU=",
    "sign_type":"RSA"
}

Encrypted request message. Please use LLP public key and demo to do the encryption.

Response

Parameters

Name

Required

Type

Description

ret_code

Required

String(4)

Return code, whether the request is handled successfully or not. Refer to Return Codes

ret_msg

Required

String(100)

Return message, description of ret_code, in Chinese

oid_partner

Required

String(18)

The unique identification assigned to the merchant. E.g. 201304121000001004

sign_type

Required

String(3)

RSA

sign

Required

String

Signature value, refer to signature document

The following parameters are returned only when ret_code=0000:

Name

Required

Type

Description

oid_paybill

Optional

String(18)

Unique transaction No. in LianLian system. E.g. 2011030900001098. Returned when the transaction object is created successfully.

no_order

Optional

String(32)

Original merchant order No.

Sample Response

Returned when the transaction object is created successfully.

Last updated