checkServiceStatus

Used to query the status of the registered Self Service.

Request Parameters: None

Response Parameters:

Parameter Name
Type
Description

result

Boolean

Whether it is registered and available.

Call Example:

example.js
let sign = {
  content: "xxxxxx",
  signature: "xxxxxx"
};

const response = await relayx.checkServiceStatus(sign);
if (response.code == 200) {
  console.log("Service status:", response.result);
}