C
C
ETrade v1 List Accounts
See more HTTP Misc Examples
List ETrade accounts using the ETrade v1 API.Chilkat C Downloads
#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;
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;
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.
respStr = CkHttp_quickGetStr(http,"https://apisb.etrade.com/v1/accounts/list");
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,"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;
}
// <?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>
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkXml_Dispose(xml);
}