Acknowledging MO's and DR's
Learn how to acknowledge if a MO or DR has been received successfully.
Response Status Code
Body
Result
# Send HTTP 200 response with body "0"
return HttpResponse("0", status=200)const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.status(200).send('0');
});Last updated