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->>Get channel rates

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

Product amount in current currency

user_name

yes

No

Payment name

user_ip

yes

No

The player's device IP

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=failed

msg

yes

string

Error message Success or failed

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
transmission parameters

Request Example

{
    "pay_amount": "1000.00",
    "pay_applydate": "2024-06-03 01:33:05",
    "pay_bankcode": "951",
    "pay_callbackurl": "http://*************/return.php",
    "pay_memberid": "10006",
    "pay_notifyurl": "http://**************/server.php",
    "pay_orderid": "1717349585178",
    "pay_userid": "15452",
    "pay_md5sign": "216FDCA906F3A7C3B0ADDECA536A469C",
    "user_ip": "127.0.0.1",
    "user_name": "test",
    "type": "json"
}

 

Return to Example

{
    "code": "1",
    "msg": "Success",
    "money": "1000",
    "order_sn": "20240603013042504853",
    "payUrl": "https://eoopay.com/Pay_************"
}