C
C
ETrade List Accounts
See more ETrade Examples
Returns a list of E*TRADE accounts for the current user.Chilkat C Downloads
#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;
int accountId;
const char *accountIdKey;
const char *accountMode;
const char *accountDesc;
const char *accountName;
const char *accountType;
const char *institutionType;
const char *accountStatus;
int closedDate;
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/list";
liveUrl = "https://api.etrade.com/v1/accounts/list";
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) >= 300) {
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;
}
if (CkHttpResponse_getStatusCode(resp) == 204) {
printf("No records available.\n");
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" standalone="yes"?>
// <AccountListResponse>
// <Accounts>
// <Account>
// <accountId>82314598</accountId>
// <accountIdKey>dBZOKt9xDrtRSAOl4MSiiA</accountIdKey>
// <accountMode>IRA</accountMode>
// <accountDesc>Brokerage</accountDesc>
// <accountName>NickName-1</accountName>
// <accountType>MARGIN</accountType>
// <institutionType>BROKERAGE</institutionType>
// <accountStatus>ACTIVE</accountStatus>
// <closedDate>0</closedDate>
// </Account>
// <Account>
// <accountId>58315636</accountId>
// <accountIdKey>vQMsebA1H5WltUfDkJP48g</accountIdKey>
// <accountMode>BROKERAGE</accountMode>
// <accountDesc>Complete Savings</accountDesc>
// <accountName>NickName-2</accountName>
// <accountType>INDIVIDUAL</accountType>
// <institutionType>BROKERAGE</institutionType>
// <accountStatus>ACTIVE</accountStatus>
// <closedDate>0</closedDate>
// </Account>
// <Account>
// <accountId>70700418</accountId>
// <accountIdKey>6_Dpy0rmuQ9cu9IbTfvF2A</accountIdKey>
// <accountMode>CASH</accountMode>
// <accountDesc>INDIVIDUAL</accountDesc>
// <accountName>NickName-3</accountName>
// <accountType>INDIVIDUAL</accountType>
// <institutionType>BROKERAGE</institutionType>
// <accountStatus>ACTIVE</accountStatus>
// <closedDate>0</closedDate>
// </Account>
// <Account>
// <accountId>83515143</accountId>
// <accountIdKey>xj1Dc18FTqWPqkEEVUr5rw</accountIdKey>
// <accountMode>CASH</accountMode>
// <accountDesc>INDIVIDUAL</accountDesc>
// <accountName/>
// <accountType>CASH</accountType>
// <institutionType>BROKERAGE</institutionType>
// <accountStatus>CLOSED</accountStatus>
// <closedDate>1521027780</closedDate>
//
// </Account>
// </Accounts>
// </AccountListResponse>
xml = CkXml_Create();
CkXml_LoadXml(xml,CkHttpResponse_bodyStr(resp));
printf("%s\n",CkXml_getXml(xml));
i = 0;
count_i = CkXml_NumChildrenHavingTag(xml,"Accounts|Account");
while (i < count_i) {
CkXml_putI(xml,i);
accountId = CkXml_GetChildIntValue(xml,"Accounts|Account[i]|accountId");
accountIdKey = CkXml_getChildContent(xml,"Accounts|Account[i]|accountIdKey");
accountMode = CkXml_getChildContent(xml,"Accounts|Account[i]|accountMode");
accountDesc = CkXml_getChildContent(xml,"Accounts|Account[i]|accountDesc");
accountName = CkXml_getChildContent(xml,"Accounts|Account[i]|accountName");
accountType = CkXml_getChildContent(xml,"Accounts|Account[i]|accountType");
institutionType = CkXml_getChildContent(xml,"Accounts|Account[i]|institutionType");
accountStatus = CkXml_getChildContent(xml,"Accounts|Account[i]|accountStatus");
closedDate = CkXml_GetChildIntValue(xml,"Accounts|Account[i]|closedDate");
i = i + 1;
}
printf("Success.\n");
CkHttp_Dispose(http);
CkJsonObject_Dispose(jsonToken);
CkHttpResponse_Dispose(resp);
CkXml_Dispose(xml);
}