## List TURN Keys `client.calls.turn.list(TURNListParamsparams, RequestOptionsoptions?): SinglePage` **get** `/accounts/{account_id}/calls/turn_keys` Lists all TURN keys in the Cloudflare account ### Parameters - `params: TURNListParams` - `account_id: string` The account identifier tag. ### Returns - `TURNListResponse` - `created?: string` The date and time the item was created. - `modified?: string` The date and time the item was last modified. - `name?: string` A short description of Calls app, not shown to end users. - `uid?: string` A Cloudflare-generated unique identifier for a item. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); // Automatically fetches more pages as needed. for await (const turnListResponse of client.calls.turn.list({ account_id: '023e105f4ecef8ad9ca31a8372d0c353', })) { console.log(turnListResponse.uid); } ``` #### 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" } } ], "success": true, "result": [ { "created": "2014-01-02T02:20:00Z", "modified": "2014-01-02T02:20:00Z", "name": "production-realtime-app", "uid": "2a95132c15732412d22c1476fa83f27a" } ] } ```