Response
Service is healthy
The status of the service
import { AtomaSDK } from "atoma-sdk";
const atomaSDK = new AtomaSDK({
bearerAuth: process.env["ATOMASDK_BEARER_AUTH"] ?? "",
});
async function run() {
const result = await atomaSDK.health.health();
// Handle the result
console.log(result);
}
run();{
"message": "<string>"
}import { AtomaSDK } from "atoma-sdk";
const atomaSDK = new AtomaSDK({
bearerAuth: process.env["ATOMASDK_BEARER_AUTH"] ?? "",
});
async function run() {
const result = await atomaSDK.health.health();
// Handle the result
console.log(result);
}
run();{
"message": "<string>"
}Service is healthy
The status of the service