Get Server Info
Last updated
API Name: Server Info – Get
This API returns server-level configuration information required by MBSE Core to interact correctly with the end system.
MBSE Core uses this API to:
Understand system time zone behavior
Determine maximum supported page size
Identify integration user configuration
Connector responsibility:
Provide accurate server configuration details.
Return pagination limits supported by the system.
Return integration user configuration metadata.
timeZone
No
String
Time zone of the end system. Examples: "America/Los_Angeles", "GMT-8:00", "UTC". Return blank if timezone is embedded in date values returned by the system.
maxResults
Yes
Integer
Maximum number of records that can be returned in a single paginated API response. If the end system does not support pagination natively, the connector must implement in-memory pagination and provide the maximum supported page size here.
integrationUserInfo
Yes
Object
Information about the integration user configuration.
fieldInternalName
Yes
String
Internal name of the field used in the system configuration screen to capture the integration username or email. This must match the corresponding field defined in the Connector Metadata API.
userDataType
Yes
Enum
Data type of the integration user field. Valid values:
- EMAIL_AS_USER
- USERNAME_AS_USER
fieldValue
No
String
Actual value of the integration user. Provide this only if the integration user is fixed and not captured via a configuration field.
maxResults must always be provided.
If the end system does not support pagination:
The connector must implement pagination internally.
maxResults must reflect the enforced page size.
timeZone must be provided if timestamps do not contain timezone information.
fieldInternalName must match a field defined in the Connector Metadata API.
fieldValue should only be populated when the integration user is not configurable via UI.
This API ensures MBSE Core can:
Interpret timestamps correctly.
Enforce safe pagination limits.
Identify integration user context consistently.
Accurate server configuration is critical for reliable synchronization and data integrity.
Last updated
GET: /mbse/api/1.0/server-info{
"timeZone": "UTC",
"maxResults": 50,
"integrationUserInfo": {
"userDataType": "USERNAME_AS_USER",
"fieldInternalName": "userName",
"fieldValue": "john.doe"
}
}
