Sample code for 30+ languages & platforms
SQL Server

ETrade v1 List Accounts

See more HTTP Misc Examples

List ETrade accounts using the ETrade v1 API.

Chilkat SQL Server Downloads

SQL Server
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

    -- This example requires the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    EXEC sp_OASetProperty @http, 'OAuth1', 1
    EXEC sp_OASetProperty @http, 'OAuthVerifier', ''
    EXEC sp_OASetProperty @http, 'OAuthConsumerKey', 'ETRADE_CONSUMER_KEY'
    EXEC sp_OASetProperty @http, 'OAuthConsumerSecret', 'ETRADE_CONSUMER_SECRET'

    -- Load the access token previously obtained via the OAuth1 3-Legged Authorization examples Step1 and Step2.
    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'LoadFile', @success OUT, 'qa_data/tokens/etrade.json'
    IF @success <> 1
      BEGIN

        PRINT 'Failed to load OAuth1 token'
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    EXEC sp_OAMethod @json, 'StringOf', @sTmp0 OUT, 'oauth_token'
    EXEC sp_OASetProperty @http, 'OAuthToken', @sTmp0
    EXEC sp_OAMethod @json, 'StringOf', @sTmp0 OUT, 'oauth_token_secret'
    EXEC sp_OASetProperty @http, 'OAuthTokenSecret', @sTmp0

    -- See the ETrade v1 API documentation HERE.

    DECLARE @respStr nvarchar(4000)
    EXEC sp_OAMethod @http, 'QuickGetStr', @respStr OUT, 'https://apisb.etrade.com/v1/accounts/list'
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 <> 1
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @json
        RETURN
      END

    -- A 200 status code indicates success.
    DECLARE @statusCode int
    EXEC sp_OAGetProperty @http, 'LastStatus', @statusCode OUT

    PRINT 'statusCode = ' + @statusCode

    -- Use the following online tool to generate parsing code from sample XML: 
    -- Generate Parsing Code from XML

    -- A sample XML response is shown below...

    DECLARE @xml int
    EXEC @hr = sp_OACreate 'Chilkat.Xml', @xml OUT

    EXEC sp_OAMethod @xml, 'LoadXml', @success OUT, @respStr

    DECLARE @i int

    DECLARE @count_i int

    DECLARE @tagPath nvarchar(4000)

    DECLARE @accountId int

    DECLARE @accountIdKey nvarchar(4000)

    DECLARE @accountMode nvarchar(4000)

    DECLARE @accountDesc nvarchar(4000)

    DECLARE @accountName nvarchar(4000)

    DECLARE @accountType nvarchar(4000)

    DECLARE @institutionType nvarchar(4000)

    DECLARE @accountStatus nvarchar(4000)

    DECLARE @closedDate int

    SELECT @i = 0
    EXEC sp_OAMethod @xml, 'NumChildrenHavingTag', @count_i OUT, 'Accounts|Account'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @xml, 'I', @i
        EXEC sp_OAMethod @xml, 'GetChildIntValue', @accountId OUT, 'Accounts|Account[i]|accountId'
        EXEC sp_OAMethod @xml, 'GetChildContent', @accountIdKey OUT, 'Accounts|Account[i]|accountIdKey'
        EXEC sp_OAMethod @xml, 'GetChildContent', @accountMode OUT, 'Accounts|Account[i]|accountMode'
        EXEC sp_OAMethod @xml, 'GetChildContent', @accountDesc OUT, 'Accounts|Account[i]|accountDesc'
        EXEC sp_OAMethod @xml, 'GetChildContent', @accountName OUT, 'Accounts|Account[i]|accountName'
        EXEC sp_OAMethod @xml, 'GetChildContent', @accountType OUT, 'Accounts|Account[i]|accountType'
        EXEC sp_OAMethod @xml, 'GetChildContent', @institutionType OUT, 'Accounts|Account[i]|institutionType'
        EXEC sp_OAMethod @xml, 'GetChildContent', @accountStatus OUT, 'Accounts|Account[i]|accountStatus'
        EXEC sp_OAMethod @xml, 'GetChildIntValue', @closedDate OUT, 'Accounts|Account[i]|closedDate'
        SELECT @i = @i + 1
      END

    -- <?xml version="1.0" encoding="UTF-8"?>
    -- <AccountListResponse>
    --    <Accounts>
    --       <Account>
    --          <accountId>84010429</accountId>
    --          <accountIdKey>JIdOIAcSpwR1Jva7RQBraQ</accountIdKey>
    --          <accountMode>MARGIN</accountMode>
    --          <accountDesc>INDIVIDUAL</accountDesc>
    --          <accountName>Individual Brokerage</accountName>
    --          <accountType>INDIVIDUAL</accountType>
    --          <institutionType>BROKERAGE</institutionType>
    --          <accountStatus>ACTIVE</accountStatus>
    --          <closedDate>0</closedDate>
    --       </Account>
    --       <Account>
    --          <accountId>84010430</accountId>
    --          <accountIdKey>JAAOIAcSpwR1Jva7RQBraQ</accountIdKey>
    --          <accountMode>MARGIN</accountMode>
    --          <accountDesc>INDIVIDUAL</accountDesc>
    --          <accountName>Individual Brokerage</accountName>
    --          <accountType>INDIVIDUAL</accountType>
    --          <institutionType>BROKERAGE</institutionType>
    --          <accountStatus>ACTIVE</accountStatus>
    --          <closedDate>0</closedDate>
    --       </Account>
    --    </Accounts>
    -- </AccountListResponse>

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @json
    EXEC @hr = sp_OADestroy @xml


END
GO