## List `external_accounts.list() -> ExternalAccountListResponse` **get** `/external-accounts` Lists all external accounts for the workspace ### Returns - `class ExternalAccountListResponse: …` List of external accounts - `data: List[Data]` - `id: str` Fragment-generated unique ID for the external account - `external_id: str` User-provided external ID - `name: str` Human-readable name for the external account ### Example ```python from fragment import Fragment client = Fragment() external_accounts = client.external_accounts.list() print(external_accounts.data) ```