[POST] .../v1/sys/getinfo
Returns information for the current API login: tariff, paid-until date, and status. Use this method to retrieve account tariff and billing status for the API login bound to the current request. The response returns api_login, tariff_id, tariff_name, paid_until, and status, and the method does not require a request body for either POST or GET. The method does not perform a separate permission check, but access still requires a valid current request context with api_login and reads tariff data for that account without changing server state. Missing api_login, missing tariff data, and tariff lookup failures are returned as HTTP 200 ErrorResult business errors.
Request Parameters
No request body.
Request Example
{}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | SysGetInfoResponse | Result object. |
Response Example
{
"ok": true,
"result": {
"api_login": "api00001",
"tariff_id": 12,
"tariff_name": "Business",
"paid_until": "2026-12-31T23:59:59",
"status": "Active"
}
}