List All Brokerage Accounts

List All Brokerage Accounts

GET {{Environment_URL}}/customers/v1/partner/physical/:cpf/remittance/investmentBroker

This query retrieves all registered brokerage accounts associated with a specific client. It is useful for displaying account management options or selecting a brokerage account for investment operations.

Headers

Name
Value

Authorization

Bearer <token>

client-key

123ABCD456

Path Params

Name
Example Value

cpf

123.456.789-00

Response

[
    {
        "id": "68b55cd4bba1ed1ec8776808",
        "fullName": "DOMINION CAPITAL STRATEGIES LIMITED",
        "currency": "USD",
        "address": {
            "street": "WINDOR HOUSE, LE POLLET STREET",
            "number": 4,
            "complement": "END 4TH FLOOR",
            "neighborhood": "Guernsey",
            "city": "Guernsey",
            "state": "Guernsey",
            "zipCode": "GY11WF",
            "country": "US"
        },
        "subType": "INVESTMENTS",
        "personType": "LEGAL",
        "account": {
            "bankName": "BANK OF NEW YORK MELLON",
            "name": "DOMINION CAPITAL STRATEGIES LIMITED",
            "number": "8901430269",
            "bankCountry": "USA",
            "currency": "USD",
            "code": [
                {
                    "option": "ACH",
                    "value": "021000018"
                },
                {
                    "option": "SWIFT_BIC",
                    "value": "IRVTUS3N"
                }
            ]
        },
        "bankCode": "123",
        "logo": "https://simple-wl-dev.s3.amazonaws.com/dominion_capital_strategies_logo.svg",
        "canBeRemoved": true
    },
    {
        "id": "68cd7e78661baded804358b3",
        "fullName": "BANCO DE TESTES",
        "currency": "USD",
        "address": {
            "street": "Rua StreetWear",
            "number": 123,
            "complement": "Ap 01",
            "neighborhood": "Washington",
            "city": "NY",
            "state": "NY",
            "zipCode": "09090119",
            "country": "US"
        },
        "subType": "INVESTMENTS",
        "personType": "LEGAL",
        "account": {
            "bankName": "BANCO DE TESTES",
            "name": "MY BANK",
            "number": "123456789",
            "bankCountry": "USA",
            "currency": "USD",
            "code": [
                {
                    "option": "ACH",
                    "value": "021000a021"
                }
            ]
        },
        "bankCode": "",
        "canBeRemoved": true
    },
    {
        "id": "68cd7fe3661baded804358d9",
        "fullName": "Charles Schwab & Co Inc Schwab & Co Inc",
        "currency": "USD",
        "address": {
            "street": "Park Avenue",
            "number": 399,
            "complement": "",
            "neighborhood": "New York",
            "city": "New York",
            "state": "New York",
            "zipCode": "10022",
            "country": "US"
        },
        "subType": "INVESTMENTS",
        "personType": "Legal",
        "account": {
            "beneficiaryDocument": {
                "beneficiaryDocType": "N_A",
                "value": null
            },
            "bankCountry": "US",
            "currency": "USD",
            "bankName": "Citibank N.A., New York",
            "name": "Charles Schwab & Co Inc Schwab & Co Inc",
            "number": "40553953",
            "code": [
                {
                    "option": "ACH",
                    "value": "021000089"
                },
                {
                    "option": "SWIFT_BIC",
                    "value": "CITIUS33"
                }
            ]
        },
        "logo": "https://simple-wl-dev.s3.amazonaws.com/charles_shwab_logo.svg",
        "canBeRemoved": false
    },
    {
        "id": "68cd7fe3661baded804358da",
        "fullName": "INTERACTIVE BROKERS LLC BROKERS LLC",
        "currency": "USD",
        "address": {
            "street": "ONE PICKWICK PLAZA",
            "number": null,
            "complement": "",
            "neighborhood": "CONNECTICUT",
            "city": "CONNECTICUT",
            "state": "GREENWICH",
            "zipCode": "06830",
            "country": "US"
        },
        "subType": "INVESTMENTS",
        "personType": "Legal",
        "account": {
            "beneficiaryDocument": {
                "beneficiaryDocType": "N_A",
                "value": null
            },
            "bankCountry": "USA",
            "currency": "USD",
            "bankName": "INTERACTIVE BROKERS LLC",
            "name": "INTERACTIVE BROKERS LLC BROKERS LLC",
            "number": "633736902",
            "code": [
                {
                    "option": "ACH",
                    "value": "021000021"
                },
                {
                    "option": "SWIFT_BIC",
                    "value": "IBKRUS33XXX"
                }
            ]
        },
        "logo": "https://simple-wl-dev.s3.amazonaws.com/interactivebrokers_logo.svg",
        "canBeRemoved": false
    }
]