## List Pool References `client.loadBalancers.pools.references.get(stringpoolId, ReferenceGetParamsparams, RequestOptionsoptions?): SinglePage` **get** `/accounts/{account_id}/load_balancers/pools/{pool_id}/references` Get the list of resources that reference the provided pool. ### Parameters - `poolId: string` - `params: ReferenceGetParams` - `account_id: string` Identifier. ### Returns - `ReferenceGetResponse` - `reference_type?: "*" | "referral" | "referrer"` - `"*"` - `"referral"` - `"referrer"` - `resource_id?: string` - `resource_name?: string` - `resource_type?: 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 }); // Automatically fetches more pages as needed. for await (const referenceGetResponse of client.loadBalancers.pools.references.get( '17b5962d775c646f3f9725cbc7a53df4', { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, )) { console.log(referenceGetResponse.resource_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": [ { "reference_type": "referrer", "resource_id": "699d98642c564d2e855e9661899b7252", "resource_name": "www.example.com", "resource_type": "load_balancer" }, { "reference_type": "referral", "resource_id": "f1aba936b94213e5b8dca0c0dbf1f9cc", "resource_name": "Login page monitor", "resource_type": "monitor" } ], "success": true } ```