Sample code for 30+ languages & platforms
C

Populi Add Financial Aid Disbursement

See more Populi Examples

Demonstrates the Populi addFinancialAidDisbursement task.

Chilkat C Downloads

C
#include <C_CkXml.h>
#include <C_CkRest.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkXml xml;
    const char *accessKey;
    HCkRest rest;
    BOOL bAutoReconnect;
    const char *responseBody;
    int disbursement;

    success = FALSE;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    // First load the previously obtained API token.
    // See Get Populi Access Token for sample code showing how to get the API token.
    xml = CkXml_Create();
    success = CkXml_LoadXmlFile(xml,"qa_data/tokens/populi_token.xml");
    accessKey = CkXml_getChildContent(xml,"access_key");
    if (CkXml_getLastMethodSuccess(xml) != TRUE) {
        printf("Did not find the access_key\n");
        CkXml_Dispose(xml);
        return;
    }

    rest = CkRest_Create();

    // Connect using TLS.
    // A single REST object, once connected, can be used for many Populi REST API calls.
    // The auto-reconnect indicates that if the already-established HTTPS connection is closed,
    // then it will be automatically re-established as needed.
    bAutoReconnect = TRUE;
    success = CkRest_Connect(rest,"yourcollege.populi.co",443,TRUE,bAutoReconnect);
    if (success != TRUE) {
        printf("%s\n",CkRest_lastErrorText(rest));
        CkXml_Dispose(xml);
        CkRest_Dispose(rest);
        return;
    }

    CkRest_putAuthorization(rest,accessKey);

    CkRest_AddQueryParam(rest,"task","addFinancialAidDisbursement");
    CkRest_AddQueryParam(rest,"person_id","12345678");
    CkRest_AddQueryParam(rest,"award_id","555555");
    CkRest_AddQueryParam(rest,"academic_term_id","123");
    CkRest_AddQueryParam(rest,"scheduled_date","2019-10-10");
    CkRest_AddQueryParam(rest,"amount","12345");

    responseBody = CkRest_fullRequestFormUrlEncoded(rest,"POST","/api/index.php");
    if (CkRest_getLastMethodSuccess(rest) != TRUE) {
        printf("%s\n",CkRest_lastErrorText(rest));
        CkXml_Dispose(xml);
        CkRest_Dispose(rest);
        return;
    }

    // We should expect a 200 response if successful.
    if (CkRest_getResponseStatusCode(rest) != 200) {
        printf("Request Header: \n");
        printf("%s\n",CkRest_lastRequestHeader(rest));
        printf("----\n");
        printf("Response StatusCode = %d\n",CkRest_getResponseStatusCode(rest));
        printf("Response StatusLine: %s\n",CkRest_responseStatusText(rest));
        printf("Response Header:\n");
        printf("%s\n",CkRest_responseHeader(rest));
        printf("Response Body:\n");
        printf("%s\n",responseBody);
        CkXml_Dispose(xml);
        CkRest_Dispose(rest);
        return;
    }

    CkXml_LoadXml(xml,responseBody);
    printf("%s\n",CkXml_getXml(xml));

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

    // <?xml version="1.0" encoding="UTF-8"?>
    // <result>
    // 	<disbursement>123456</disbursement>
    // </result>

    disbursement = CkXml_GetChildIntValue(xml,"disbursement");


    CkXml_Dispose(xml);
    CkRest_Dispose(rest);

    }