Returns information about the authenticated system, including suspension and organization status.
GET
/systems/info
curl \
--request GET 'https://collect.your-domain.com/api/systems/info' \
--user "username:password"
Response examples (200)
{
"code": 200,
"message": "system info retrieved successfully",
"data": {
"system_id": "abc-123",
"system_key": "my-system-key",
"name": "Milan Office Server",
"type": "ns8",
"fqdn": "server.example.com",
"status": "online",
"suspended": false,
"suspended_at": "2026-05-04T09:42:00Z",
"deleted": false,
"deleted_at": "2026-05-04T09:42:00Z",
"registered": true,
"registered_at": "2025-01-15T10:00:00Z",
"created_at": "2025-01-10T08:00:00Z",
"rebranding_enabled": false,
"organization": {
"id": "4405ffd0-0aca-44ef-bae2-c8545bce94f4",
"logto_id": "akkbs6x2wo82",
"name": "Owner",
"type": "owner",
"suspended": false,
"suspended_at": "2026-05-04T09:42:00Z"
}
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (404)
{
"code": 400,
"message": "validation failed",
"data": {
"type": "validation_error",
"errors": [
{
"key": "username",
"message": "required",
"value": "string"
}
]
}
}
Response examples (500)
{
"code": 500,
"message": "internal server error",
"data": {}
}