https://{request address}/Pay_AddOrder.html

Request parameters

Parameter name

Required

Whether to participate in the signature

Description

pay_memberid

YES

YES

The "Merchant Number" provided by the payment system to the cooperating merchants

pay_orderid

YES

YES

Merchant unique order number

pay_applydate

YES

YES

Payment time,yyyy-MM-dd HH:mm:ss

pay_bankcode

YES

YES

Channel Management->>Channel Rate Acquisition

pay_notifyurl

YES

YES

Server return address. (POST return data)

pay_callbackurl

YES

YES

Page jump return address (POST return data)

pay_userid

YES

YES

Transaction user ID; if it is inconvenient to provide or cannot be obtained, please provide other alternative data, such as: player’s mobile phone number.

pay_amount

YES

YES

The product amount in the current currency

user_name

YES

NO

Player's Name

user_mobile

YES

NO

Player's mobile phone number, 10 digits only

user_email

YES

NO

Player's mailbox

card_type

YES

NO

Customer ID Number Type

NIT     Corporate tax number is 9 digits without separators, and individual tax number is 10 digits without separators.

CC     Local ID card is 6-10 digits without separators.

CE     Foreign ID card is 6-10 digits without separators.

PP     Passport, only letters and numbers are allowed, no limit on length.

card_number

YES

NO

Customer ID number, please refer to the previous article for the rules

pay_md5sign

YES

NO

Please see the MD5 signature field format

type

NO

NO

If type=json is passed, json will be returned. If other values ​​are passed, html will be returned.

 

Response parameters (will be returned only if type=json is passed)

Parameter name

Required

Type

Description

status

YES

string

Status code 1 = success error = failure

msg

YES

string

Error message Success or failure

pay_amount

YES

string

order amount

pay_orderid

YES

string

Payment order number of the payment system

payUrl

YES

string

Payment link, i.e. cashier

return_params

NO

string

Transparent parameters

 

Request Example

{
    "pay_amount": "1000.00",
    "pay_applydate": "2024-06-03 01:33:05",
    "pay_bankcode": "932",
    "pay_callbackurl": "http://pay.frfr88.com\/return.php",
    "pay_memberid": "10006",
    "pay_notifyurl": "http://pay.frfr88.com\/server.php",
    "pay_orderid": "1717349585178",
    "pay_userid": "15452",
    "pay_md5sign": "216FDCA906F3A7C3B0ADDECA536A469C",
    "user_name": "test",
    "user_mobile": "44878435848",
    "user_email": "This email address is being protected from spambots. You need JavaScript enabled to view it.",

    "card_type": "CC",
    "card_number": "3215545610",
    "type": "json"
}

Response Example

{
    "code": "1",
    "msg": "Success",
    "money": "1000",
    "order_sn": "20240603014224485349",
    "payUrl": "https://*********"
}