Unicode C
Unicode C
Walmart v3 Get a Feed Status
See more Walmart v3 Examples
This API returns the feed status for a specified Feed ID.Chilkat Unicode C Downloads
#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkXmlW.h>
void ChilkatSample(void)
{
BOOL success;
HCkHttpW http;
HCkStringBuilderW sbResponseBody;
HCkXmlW xmlResponse;
const wchar_t *PartnerFeedResponse_xmlns_ns2;
const wchar_t *feedId;
const wchar_t *feedStatus;
int itemsReceived;
int itemsSucceeded;
int itemsFailed;
int itemsProcessing;
int offset;
int limit;
int i;
int count_i;
int martId;
const wchar_t *sku;
int index;
const wchar_t *ingestionStatus;
success = FALSE;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Implements the following CURL command:
// curl -X GET \
// https://marketplace.walmartapis.com/v3/feeds/{feedId} \
// -H 'WM_SVC.NAME: Walmart Marketplace'
// -H 'WM_SEC.ACCESS_TOKEN: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....'
// -H 'WM_QOS.CORRELATION_ID: b3261d2d-028a-4ef7-8602-633c23200af6'
// -H 'Content-Type: application/xml'
// -H 'Accept: application/xml'
CkHttpW_SetRequestHeader(http,L"WM_QOS.CORRELATION_ID",L"b3261d2d-028a-4ef7-8602-633c23200af6");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/xml");
CkHttpW_SetRequestHeader(http,L"WM_SEC.ACCESS_TOKEN",L"eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....");
CkHttpW_SetRequestHeader(http,L"Accept",L"application/xml");
CkHttpW_SetRequestHeader(http,L"WM_SVC.NAME",L"Walmart Marketplace");
sbResponseBody = CkStringBuilderW_Create();
success = CkHttpW_QuickGetSb(http,L"https://marketplace.walmartapis.com/v3/feeds/{feedId}",sbResponseBody);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
return;
}
xmlResponse = CkXmlW_Create();
CkXmlW_LoadSb(xmlResponse,sbResponseBody,TRUE);
// Sample XML response:
// (Sample code for parsing the XML response is shown below)
// <?xml version="1.0" encoding="UTF-8"?>
// <PartnerFeedResponse xmlns:ns2="http://walmart.com/">
// <feedId>1c349f8f-aec0-411f-8454-ead47d12946f</feedId>
// <feedStatus>PROCESSED</feedStatus>
// <ingestionErrors/>
// <itemsReceived>11</itemsReceived>
// <itemsSucceeded>11</itemsSucceeded>
// <itemsFailed>0</itemsFailed>
// <itemsProcessing>0</itemsProcessing>
// <offset>0</offset>
// <limit>0</limit>
// <itemDetails>
// <itemIngestionStatus>
// <martId>0</martId>
// <sku>sku1</sku>
// <index>8</index>
// <ingestionStatus>SUCCESS</ingestionStatus>
// <ingestionErrors/>
// </itemIngestionStatus>
// <itemIngestionStatus>
// <martId>0</martId>
// <sku>sku2</sku>
// <index>6</index>
// <ingestionStatus>SUCCESS</ingestionStatus>
// <ingestionErrors/>
// </itemIngestionStatus>
// <itemIngestionStatus>
// <martId>0</martId>
// <sku>sku3</sku>
// <index>9</index>
// <ingestionStatus>SUCCESS</ingestionStatus>
// <ingestionErrors/>
// </itemIngestionStatus>
// </itemDetails>
// </PartnerFeedResponse>
// Sample code for parsing the XML response...
// Use the following online tool to generate parsing code from sample XML:
// Generate Parsing Code from XML
PartnerFeedResponse_xmlns_ns2 = CkXmlW_getAttrValue(xmlResponse,L"xmlns:ns2");
feedId = CkXmlW_getChildContent(xmlResponse,L"feedId");
feedStatus = CkXmlW_getChildContent(xmlResponse,L"feedStatus");
itemsReceived = CkXmlW_GetChildIntValue(xmlResponse,L"itemsReceived");
itemsSucceeded = CkXmlW_GetChildIntValue(xmlResponse,L"itemsSucceeded");
itemsFailed = CkXmlW_GetChildIntValue(xmlResponse,L"itemsFailed");
itemsProcessing = CkXmlW_GetChildIntValue(xmlResponse,L"itemsProcessing");
offset = CkXmlW_GetChildIntValue(xmlResponse,L"offset");
limit = CkXmlW_GetChildIntValue(xmlResponse,L"limit");
i = 0;
count_i = CkXmlW_NumChildrenHavingTag(xmlResponse,L"itemDetails|itemIngestionStatus");
while (i < count_i) {
CkXmlW_putI(xmlResponse,i);
martId = CkXmlW_GetChildIntValue(xmlResponse,L"itemDetails|itemIngestionStatus[i]|martId");
sku = CkXmlW_getChildContent(xmlResponse,L"itemDetails|itemIngestionStatus[i]|sku");
index = CkXmlW_GetChildIntValue(xmlResponse,L"itemDetails|itemIngestionStatus[i]|index");
ingestionStatus = CkXmlW_getChildContent(xmlResponse,L"itemDetails|itemIngestionStatus[i]|ingestionStatus");
i = i + 1;
}
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
CkXmlW_Dispose(xmlResponse);
}