action linode_get_databases_mongo_dbinstance_credentials { label: "Managed MongoDB Database Credentials View" description: "Display the root username and password for an accessible Managed MongoDB Database.\n\nThe Database must have an `active` status to perform this command.\n\n**Note**: New MongoDB Databases cannot currently be created.\n" provider: linode method: GET path: "/databases/mongodb/instances/{instanceId}/credentials" encoding: json output: { type: "object" description: "Managed Database object for database credentials." properties: { password: { type: "string" description: "The randomly-generated root password for the Managed Database instance." } username: { type: "string" description: "The root username for the Managed Database instance." } } } }