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

The root resource is the starting point for the Ops Manager API. From here, you can traverse the links to reach all other API resources.

Base URL: https://<ops-manager-host>

Syntax

GET /api/public/v1.0/

Request Path Parameters

This endpoint does not use HTTP request path parameters.

Request Query Parameters

Field Required/Optional Description
pageNum Optional. The page to return.
itemsPerPage Optional. Maximum number of items to return per page. Default is 100.
envelope Optional. A boolean that specifies whether or not to wrap the response in an envelope.

Request Body Parameters

This endpoint does not use HTTP request body parameters.

Response Elements

The response includes:

Field Description
links Array of links to related resources. For details, see Linking.
throttling The field is obsolete and has the value false.

Example

Example Request

curl -X GET -u "username:apiKey" --digest "<ops-manager-host>:<port>/api/public/v1.0"

Example Response

{
   "links" : [
      {
         "href" : "<ops-manager-host>:<port>/api/public/v1.0",
         "rel" : "self"
      },
      {
         "href" : "<ops-manager-host>:<port>/api/public/v1.0/users/5555555d3bf9942ef124958b",
         "rel" : "http://mms.mongodb.com/user"
      },
      {
         "href" : "<ops-manager-host>:<port>/api/public/v1.0/groups",
         "rel" : "http://mms.mongodb.com/groups"
      }
   ],
   "throttling" : false
}