apidocs

MaintenanceBeat API

—– This API is obsolete and no longer functional. The method body has been fully commented out. Calling this endpoint does nothing and returns no response. It is retained in the API surface for backward compatibility only. Do not use this API in new integrations.

Previously, this endpoint was intended to be called by infoRouter’s internal maintenance scheduler to trigger server-side self-maintenance tasks such as index cleanup, session expiry, and background job execution. These maintenance operations are now managed automatically by the server’s built-in background service infrastructure without requiring an external HTTP trigger.

Endpoint


/srv.asmx/MaintenanceBeat

Methods

Parameters

This API accepts no parameters. The CancellationToken it receives internally is injected by the ASP.NET Core framework and is not a caller-supplied argument.

Parameter Type Required Description
(none) No parameters are accepted.

Response

This endpoint returns no response body. The HTTP response is always 200 OK with an empty body, regardless of whether the call succeeded or failed, because the implementation is a no-op.


Required Permissions

No authentication ticket is required. This endpoint was intended for internal system use only and has no access control.


Example

GET Request


GET /srv.asmx/MaintenanceBeat HTTP/1.1

Response: 200 OK with empty body.

POST Request


POST /srv.asmx/MaintenanceBeat HTTP/1.1

Content-Length: 0

Response: 200 OK with empty body.

SOAP Request


<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"

               xmlns:tns="http://tempuri.org/">

  <soap:Body>

    <tns:MaintenanceBeat />

  </soap:Body>

</soap:Envelope>


Notes


(None “ this is a standalone obsolete endpoint with no functional equivalent.)


Error Codes

This API returns no error codes. The endpoint always returns HTTP 200 OK with an empty body.