Get information about the underlying Atlas mongod

GET /groups/{groupId}/apps/{appId}/services/{serviceId}/commands/build_info

Path parameters

Responses

  • 200 application/json

    The build information was successfully retrieved.

    Hide response attributes Show response attributes object
    • version string

      Human-readable version information about the mongod instance. This string will take the format <major>.<minor>.<patch>.

    • gitVersion string

      The commit identifier that identifies the state of the code use to build the mongod.

    • versionArray array[integer]

      An array that conveys version information about the mongod instance. See version for a more readable version of this string.

    • javascriptEngine string

      A string that reports the JavaScript engine used in the mongod instance. By default, this is mozjs after version 3.2, and previously V8.

    • bits string

      A number that reflects the target processor architecture of the mongod binary.

    • debug boolean

      A boolean that reflects whether or not the mongod instance was built with debugging options.

    • maxBsonObjectSize integer

      A number that reports the Maximum BSON Document Size

GET /groups/{groupId}/apps/{appId}/services/{serviceId}/commands/build_info
curl \
 --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/services/{serviceId}/commands/build_info' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "version": "string",
  "gitVersion": "string",
  "versionArray": [
    42
  ],
  "javascriptEngine": "string",
  "bits": "string",
  "debug": true,
  "maxBsonObjectSize": 42
}