Sample code for 30+ languages & platforms
C

ETrade List Transactions

See more ETrade Examples

Gets transactions for the selected brokerage account.

Chilkat C Downloads

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

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttp http;
    HCkJsonObject jsonToken;
    const char *sandboxUrl;
    const char *liveUrl;
    HCkHttpResponse resp;
    HCkXml xml;
    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;
    int i;
    int count_i;

    success = FALSE;

    // This 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 Authorization
    jsonToken = CkJsonObject_Create();
    success = CkJsonObject_LoadFile(jsonToken,"qa_data/tokens/etrade.json");
    if (success != TRUE) {
        printf("Failed to load OAuth1 token\n");
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(jsonToken);
        return;
    }

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

    sandboxUrl = "https://apisb.etrade.com/v1/accounts/{$accountIdKey}/transactions";
    liveUrl = "https://api.etrade.com/v1/accounts/{$accountIdKey}/transactions";

    CkHttp_SetUrlVar(http,"accountIdKey","6_Dpy0rmuQ9cu9IbTfvF2A");

    resp = CkHttpResponse_Create();
    success = CkHttp_HttpNoBody(http,"GET",sandboxUrl,resp);
    if (success == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(jsonToken);
        CkHttpResponse_Dispose(resp);
        return;
    }

    // Make sure a successful response was received.
    if (CkHttpResponse_getStatusCode(resp) > 200) {
        printf("%s\n",CkHttpResponse_statusLine(resp));
        printf("%s\n",CkHttpResponse_header(resp));
        printf("%s\n",CkHttpResponse_bodyStr(resp));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(jsonToken);
        CkHttpResponse_Dispose(resp);
        return;
    }

    // Sample XML response:

    // Use this online tool to generate parsing code from sample XML: 
    // Generate Parsing Code from XML

    // <?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>

    xml = CkXml_Create();
    CkXml_LoadXml(xml,CkHttpResponse_bodyStr(resp));
    printf("%s\n",CkXml_getXml(xml));

    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");

    printf("Success.\n");


    CkHttp_Dispose(http);
    CkJsonObject_Dispose(jsonToken);
    CkHttpResponse_Dispose(resp);
    CkXml_Dispose(xml);

    }