Sample code for 30+ languages & platforms
C

ETrade v1 List Transactions

See more HTTP Misc Examples

Get information about the transactions in an ETrade brokerage account.

Chilkat C Downloads

C
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkXml.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttp http;
    HCkJsonObject json;
    const char *respStr;
    int statusCode;
    HCkXml xml;
    int i;
    int count_i;
    const char *tagPath;
    const char *transactionId;
    int accountId;
    const char *transactionDate;
    const char *postDate;
    int amount;
    const char *description;
    int description2;
    const char *transactionType;
    const char *imageFlag;
    const char *instType;
    int quantity;
    int price;
    const char *settlementCurrency;
    const char *paymentCurrency;
    int fee;
    const char *settlementDate;
    const char *detailsURI;
    const char *pageMarkers;
    const char *moreTransactions;
    int transactionCount;
    int totalCount;

    success = FALSE;

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

    http = CkHttp_Create();

    CkHttp_putOAuth1(http,TRUE);
    CkHttp_putOAuthVerifier(http,"");
    CkHttp_putOAuthConsumerKey(http,"ETRADE_CONSUMER_KEY");
    CkHttp_putOAuthConsumerSecret(http,"ETRADE_CONSUMER_SECRET");

    // Load the access token previously obtained via the OAuth1 3-Legged Authorization examples Step1 and Step2.
    json = CkJsonObject_Create();
    success = CkJsonObject_LoadFile(json,"qa_data/tokens/etrade.json");
    if (success != TRUE) {
        printf("Failed to load OAuth1 token\n");
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        return;
    }

    CkHttp_putOAuthToken(http,CkJsonObject_stringOf(json,"oauth_token"));
    CkHttp_putOAuthTokenSecret(http,CkJsonObject_stringOf(json,"oauth_token_secret"));

    // See the ETrade v1 API documentation HERE.

    CkHttp_SetUrlVar(http,"accountIdKey","vsnhtF7d9jXxBy6HyaAC4vQ");
    respStr = CkHttp_quickGetStr(http,"https://apisb.etrade.com/v1/accounts/{$accountIdKey}/transactions");
    if (CkHttp_getLastMethodSuccess(http) != TRUE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        return;
    }

    // A 200 status code indicates success.
    statusCode = CkHttp_getLastStatus(http);
    printf("statusCode = %d\n",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...

    xml = CkXml_Create();
    CkXml_LoadXml(xml,respStr);

    i = 0;
    count_i = CkXml_NumChildrenHavingTag(xml,"Transaction");
    while (i < count_i) {
        CkXml_putI(xml,i);
        transactionId = CkXml_getChildContent(xml,"Transaction[i]|transactionId");
        accountId = CkXml_GetChildIntValue(xml,"Transaction[i]|accountId");
        transactionDate = CkXml_getChildContent(xml,"Transaction[i]|transactionDate");
        postDate = CkXml_getChildContent(xml,"Transaction[i]|postDate");
        amount = CkXml_GetChildIntValue(xml,"Transaction[i]|amount");
        description = CkXml_getChildContent(xml,"Transaction[i]|description");
        description2 = CkXml_GetChildIntValue(xml,"Transaction[i]|description2");
        transactionType = CkXml_getChildContent(xml,"Transaction[i]|transactionType");
        imageFlag = CkXml_getChildContent(xml,"Transaction[i]|imageFlag");
        instType = CkXml_getChildContent(xml,"Transaction[i]|instType");
        quantity = CkXml_GetChildIntValue(xml,"Transaction[i]|brokerage|quantity");
        price = CkXml_GetChildIntValue(xml,"Transaction[i]|brokerage|price");
        settlementCurrency = CkXml_getChildContent(xml,"Transaction[i]|brokerage|settlementCurrency");
        paymentCurrency = CkXml_getChildContent(xml,"Transaction[i]|brokerage|paymentCurrency");
        fee = CkXml_GetChildIntValue(xml,"Transaction[i]|brokerage|fee");
        settlementDate = CkXml_getChildContent(xml,"Transaction[i]|brokerage|settlementDate");
        detailsURI = CkXml_getChildContent(xml,"Transaction[i]|detailsURI");
        i = i + 1;
    }

    pageMarkers = CkXml_getChildContent(xml,"pageMarkers");
    moreTransactions = CkXml_getChildContent(xml,"moreTransactions");
    transactionCount = CkXml_GetChildIntValue(xml,"transactionCount");
    totalCount = CkXml_GetChildIntValue(xml,"totalCount");

    // <?xml version="1.0" encoding="UTF-8"?>
    // <TransactionListResponse>
    //    <Transaction>
    //       <transactionId>18165100001766</transactionId>
    //       <accountId>83564979</accountId>
    //       <transactionDate>1528948800000</transactionDate>
    //       <postDate>1528948800000</postDate>
    //       <amount>-2</amount>
    //       <description>ACH WITHDRAWL REFID:109187276;</description>
    //       <description2>109187276</description2>
    //       <transactionType>Transfer</transactionType>
    //       <memo />
    //       <imageFlag>false</imageFlag>
    //       <instType>BROKERAGE</instType>
    //       <brokerage>
    //          <product />
    //          <quantity>0</quantity>
    //          <price>0</price>
    //          <settlementCurrency>USD</settlementCurrency>
    //          <paymentCurrency>USD</paymentCurrency>
    //          <fee>0</fee>
    //          <settlementDate>1528948800000</settlementDate>
    //       </brokerage>
    //       <detailsURI>https://api.etrade.com/v1/accounts/yIFaUoJ81qyAhgxLWRQ42g/transactions/18165100001766</detailsURI>
    //    </Transaction>
    //    <Transaction>
    //       <transactionId>18158100000983</transactionId>
    //       <accountId>83564979</accountId>
    //       <transactionDate>1528344000000</transactionDate>
    //       <postDate>1528344000000</postDate>
    //       <amount>-2</amount>
    //       <description>ACH WITHDRAWL REFID:98655276;</description>
    //       <description2>98655276</description2>
    //       <transactionType>Transfer</transactionType>
    //       <memo />
    //       <imageFlag>false</imageFlag>
    //       <instType>BROKERAGE</instType>
    //       <brokerage>
    //          <product />
    //          <quantity>0</quantity>
    //          <price>0</price>
    //          <settlementCurrency>USD</settlementCurrency>
    //          <paymentCurrency>USD</paymentCurrency>
    //          <fee>0</fee>
    //          <settlementDate>1528344000000</settlementDate>
    //       </brokerage>
    //       <detailsURI>https://api.etrade.com/v1/accounts/yIFaUoJ81qyAhgxLWRQ42g/transactions/18158100000983</detailsURI>
    //    </Transaction>
    //    <pageMarkers>eNpTsAlITE91zi%2FNK%2FHMc04syi8tTs2xM7TRxybMpWATkl%2BSmBOUmpxflAKWtTO10ccQg6mDmwEyEE0EqAbE8SvNTUotCk4tLE3NS061M9Ax0DEEYgOIA9BkuRQgmjxTfDKLQUYoQAV8E4uyU4vsDC0MzUwNDYDA0NzMrKamBmIKVJYLphpiKsyTUB7IbH1kwwFa7F0D</pageMarkers>
    //    <moreTransactions>false</moreTransactions>
    //    <transactionCount>5</transactionCount>
    //    <totalCount>5</totalCount>
    // </TransactionListResponse


    CkHttp_Dispose(http);
    CkJsonObject_Dispose(json);
    CkXml_Dispose(xml);

    }