Navigation
This version of the documentation is archived and no longer supported. To learn how to upgrade your version of MongoDB Ops Manager, refer to the upgrade documentation.
You were redirected from a different version of the documentation. Click here to go back.

Root

This is the starting point (or the homepage, if you will) for the MMS API. From here, you can traverse the links to reach all other API resources.

Sample Entity

{
  "throttling": false,
  "links": [ ... ]
}

Entity Fields

Name Type Description
throttling boolean Tells whether or not MMS is throttling data. This can be used as a simple indicator of the current health of MMS, since throttling is generally enabled when MMS is in an unhealthy state.

Example

Retrieve the root resource:

curl -u "<username>:<apiKey>" "https://mms.mongodb.com/api/public/v1.0" --digest -i
HTTP/1.1 200 OK

{
  "throttling" : false,
  "links" : [ ... ]
}
←   MMS Public API Hosts  →