List API keys

GET /groups/{groupId}/apps/{appId}/api_keys

List API keys associated with a Atlas App Services App.

Path parameters

Responses

  • 200 application/json

    The API keys were successfully listed.

    Hide response attributes Show response attributes object
    • _id string
    • name string
    • disabled boolean
GET /groups/{groupId}/apps/{appId}/api_keys
curl \
 --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/api_keys' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "_id": "string",
    "name": "string",
    "disabled": true
  }
]