# List Funding Sources Retrieves a paginated list of funding sources for the organization. Funding sources represent accounts that can be used to fund campaigns, including the primary organization account and settlement funds. Endpoint: GET /v2/campaign-manager/funding-sources Version: v2 Security: oauth2 ## Query parameters: - `page` (integer) - `pageSize` (integer) ## Response 200 fields (application/json): - `pageNumber` (integer) - `pageSize` (integer) - `totalPages` (integer) - `totalItems` (integer) - `data` (array) - `data.id` (string) - `data.name` (string) - `data.type` (integer) Enum: "OrganizationAccount", "SettlementFund" - `data.status` (integer) Enum: "Pending", "Active", "Rejected" ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null)