Sample code for 30+ languages & platforms
Unicode C

hacienda.go.cr Recepción de comprobantes electrónicos y respuestas del receptor.

See more hacienda.go.cr Examples

Comprobantes Electrónicos API version v1 -- Recepción de comprobantes electrónicos y respuestas del receptor.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkHttpW.h>
#include <C_CkBinDataW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttpW http;
    HCkBinDataW bdSignedXml;
    HCkJsonObjectW json;
    HCkJsonObjectW jsonToken;
    HCkHttpResponseW resp;

    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 POST -H "Content-Type: application / json" \
    //   -H 'authorization: Bearer {access_token}' \
    //   -d '{
    //   "clave": "50601011600310112345600100010100000000011999999999",
    //   "fecha": "2016-01-01T00:00:00-0600",
    //   "emisor": {
    //     "tipoIdentificacion": "02",
    //     "numeroIdentificacion": "003101123456"
    //   },
    //   "receptor": {
    //     "tipoIdentificacion": "02",
    //     "numeroIdentificacion": "003101123456"
    //   },
    //   "comprobanteXml": "PD94..."
    // }' https://api.comprobanteselectronicos.go.cr/recepcion/v1/recepcion

    // Use the following online tool to generate HTTP code from a CURL command
    // Convert a cURL Command to HTTP Source Code

    // Use this online tool to generate code from sample JSON:
    // Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "clave": "50601011600310112345600100010100000000011999999999",
    //   "fecha": "2016-01-01T00:00:00-0600",
    //   "emisor": {
    //     "tipoIdentificacion": "02",
    //     "numeroIdentificacion": "003101123456"
    //   },
    //   "receptor": {
    //     "tipoIdentificacion": "02",
    //     "numeroIdentificacion": "003101123456"
    //   },
    //   "comprobanteXml": "PD94b..."
    // }

    // Load the previously signed XML.
    bdSignedXml = CkBinDataW_Create();
    success = CkBinDataW_LoadFile(bdSignedXml,L"someDir/signed.xml");
    if (success == FALSE) {
        wprintf(L"Failed to load the XAdES signed XML.\n");
        CkHttpW_Dispose(http);
        CkBinDataW_Dispose(bdSignedXml);
        return;
    }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"clave",L"50601011600310112345600100010100000000011999999999");
    CkJsonObjectW_UpdateString(json,L"fecha",L"2016-01-01T00:00:00-0600");
    CkJsonObjectW_UpdateString(json,L"emisor.tipoIdentificacion",L"02");
    CkJsonObjectW_UpdateString(json,L"emisor.numeroIdentificacion",L"003101123456");
    CkJsonObjectW_UpdateString(json,L"receptor.tipoIdentificacion",L"02");
    CkJsonObjectW_UpdateString(json,L"receptor.numeroIdentificacion",L"003101123456");
    // Add the base64 encoded representation of the signed XML.
    CkJsonObjectW_UpdateString(json,L"comprobanteXml",CkBinDataW_getEncoded(bdSignedXml,L"base64"));

    // Load our previously obtained OAuth2 access token.
    jsonToken = CkJsonObjectW_Create();
    success = CkJsonObjectW_LoadFile(jsonToken,L"qa_data/tokens/hacienda_cr.json");
    if (success != TRUE) {
        wprintf(L"Failed to load constantContact.json\n");
        CkHttpW_Dispose(http);
        CkBinDataW_Dispose(bdSignedXml);
        CkJsonObjectW_Dispose(json);
        CkJsonObjectW_Dispose(jsonToken);
        return;
    }

    // Adds the "Authorization: Bearer {access_token}" header.
    CkHttpW_putAuthToken(http,CkJsonObjectW_stringOf(jsonToken,L"access_token"));

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application / json");

    resp = CkHttpResponseW_Create();
    success = CkHttpW_HttpJson(http,L"POST",L"https://api.comprobanteselectronicos.go.cr/recepcion/v1/recepcion",json,L"application/json",resp);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkBinDataW_Dispose(bdSignedXml);
        CkJsonObjectW_Dispose(json);
        CkJsonObjectW_Dispose(jsonToken);
        CkHttpResponseW_Dispose(resp);
        return;
    }

    // A 201 status code indicates success.
    wprintf(L"Response status code: %d\n",CkHttpResponseW_getStatusCode(resp));

    wprintf(L"Response body:\n");
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));


    CkHttpW_Dispose(http);
    CkBinDataW_Dispose(bdSignedXml);
    CkJsonObjectW_Dispose(json);
    CkJsonObjectW_Dispose(jsonToken);
    CkHttpResponseW_Dispose(resp);

    }