API
const text = `${merchantId}${action}${user}${amount}${limitTotal}${limitDay}${description}${ts}${KEY}`;// Signature Example
const KEY = "UMI-API-KEY";
let str = '';
// Iterate through the parameter object
for (const key in param) {
if (param.hasOwnProperty(key)) {
const value = param[key];
// Concatenate parameter values into the string
str += `${value}`;
}
}
// Append the timestamp and secret key to the end of the string
str += `${ts}${KEY}`;
// Compute the MD5 hash value
const sign = md5(str);Increase DivePoint
Request Body
Name
Type
Description
Last updated