Response Format
All NukeBase operations return a standardized response object:
Standard response format
{
// The operation performed
action: "get",
// Data from the operation
data: {
"user123": { name: "John", age: 32 },
"user456": { name: "Jane", age: 28 }
},
// For tracking the request
requestId: "RH8HZX9P",
// Success or Failed
status: "Success"
}
When an error occurs, the response includes:
Error response format
{
status: "Failed",
message: "Error description here"
}