## SSL/TLS Recommendation `client.ssl.recommendations.get(RecommendationGetParamsparams, RequestOptionsoptions?): RecommendationGetResponse` **get** `/zones/{zone_id}/ssl/recommendation` Retrieve the SSL/TLS Recommender's recommendation for a zone. ### Parameters - `params: RecommendationGetParams` - `zone_id: string` ### Returns - `RecommendationGetResponse` - `id: string` - `editable: boolean` Whether this setting can be updated or not. - `modified_on: string` Last time this setting was modified. - `value: "auto" | "custom"` Current setting of the automatic SSL/TLS. - `"auto"` - `"custom"` - `next_scheduled_scan?: string | null` Next time this zone will be scanned by the Automatic SSL/TLS. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const recommendation = await client.ssl.recommendations.get({ zone_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(recommendation.id); ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "result": { "id": "ssl_automatic_mode", "editable": true, "modified_on": "2014-01-01T05:20:00.12345Z", "value": "auto", "next_scheduled_scan": "2014-01-01T05:20:00.12345Z" }, "success": true } ```