Retrieve VAT payments
curl -X GET https://test-api.service.hmrc.gov.uk/organisations/vat/MY_HMRC_VRN/payments?from=2018-06-25&to=2019-02-17 \
-H 'Authorization: Bearer HMRC_ACCESS_TOKEN' \
-H 'Accept: application/vnd.hmrc.1.0+json'
#include <CkRestW.h>
#include <CkStringBuilderW.h>
#include <CkJsonObjectW.h>
void ChilkatSample(void)
{
CkRestW rest;
bool success;
// URL: https://test-api.service.hmrc.gov.uk/organisations/vat/MY_HMRC_VRN/payments?from=2018-06-25&to=2019-02-17
bool bTls = true;
int port = 443;
bool bAutoReconnect = true;
success = rest.Connect(L"test-api.service.hmrc.gov.uk",port,bTls,bAutoReconnect);
if (success != true) {
wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
wprintf(L"%s\n",rest.lastErrorText());
return;
}
rest.AddHeader(L"Authorization",L"Bearer HMRC_ACCESS_TOKEN");
rest.AddHeader(L"Accept",L"application/vnd.hmrc.1.0+json");
CkStringBuilderW sbResponseBody;
success = rest.FullRequestNoBodySb(L"GET",L"/organisations/vat/MY_HMRC_VRN/payments?from=2018-06-25&to=2019-02-17",sbResponseBody);
if (success != true) {
wprintf(L"%s\n",rest.lastErrorText());
return;
}
int respStatusCode = rest.get_ResponseStatusCode();
if (respStatusCode >= 400) {
wprintf(L"Response Status Code = %d\n",respStatusCode);
wprintf(L"Response Header:\n");
wprintf(L"%s\n",rest.responseHeader());
wprintf(L"Response Body:\n");
wprintf(L"%s\n",sbResponseBody.getAsString());
return;
}
CkJsonObjectW jsonResponse;
jsonResponse.LoadSb(sbResponseBody);
// See the Online Tool for Generating JSON Parse Code
int i;
int count_i;
const wchar_t *amount = 0;
const wchar_t *received = 0;
i = 0;
count_i = jsonResponse.SizeOfArray(L"payments");
while (i < count_i) {
jsonResponse.put_I(i);
amount = jsonResponse.stringOf(L"payments[i].amount");
received = jsonResponse.stringOf(L"payments[i].received");
i = i + 1;
}
}
{
"payments": [
{
"amount": 100.05,
"received": "2018-04-06"
}
]
}