## Get a DLS region `client.dls.regions.get(stringregionId, RegionGetParamsparams, RequestOptionsoptions?): RegionGetResponse` **get** `/accounts/{account_id}/dls/regions/{region_id}` Get a DLS region ### Parameters - `regionId: string` UUID of the region (custom or managed) or region_key of a managed region. - `params: RegionGetParams` - `account_id: number` ### Returns - `RegionGetResponse` - `id: string` - `created_on: string` - `modified_on: string` - `name: string` - `region_key: string` - `version: number` - `version_created_on: string` ### 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 region = await client.dls.regions.get('a1b2c3d4-e5f6-7890-abcd-ef1234567890', { account_id: 0, }); console.log(region.id); ``` #### Response ```json { "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "result": { "id": "id", "created_on": "2019-12-27T18:11:19.117Z", "modified_on": "2019-12-27T18:11:19.117Z", "name": "name", "region_key": "x", "version": 0, "version_created_on": "2019-12-27T18:11:19.117Z" }, "success": true, "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ] } ```