Retrieve a value definition from an application

GET /groups/{groupId}/apps/{appId}/values/{valueId}

Retrieve a value definition from an application.

Path parameters

Responses

  • 200 application/json

    Successfully retrieved the value.

    Hide response attributes Show response attributes object
    • _id string
    • name string Required
    • private boolean Required
    • from_secret boolean Required

      If true, the value is a reference by name to a Secret.

GET /groups/{groupId}/apps/{appId}/values/{valueId}
curl \
 --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/values/{valueId}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "_id": "string",
  "name": "string",
  "private": true,
  "from_secret": true
}