Sample code for 30+ languages & platforms
C

Yousign: List Files

See more Yousign Examples

List Yousign files.

Chilkat C Downloads

C
#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttp http;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject json;
    int respStatusCode;
    const char *id;
    const char *name;
    const char *v_type;
    const char *contentType;
    const char *description;
    const char *createdAt;
    const char *updatedAt;
    const char *sha256;
    const char *workspace;
    const char *creator;
    BOOL v_protected;
    int position;
    const char *parent;
    BOOL fieldsCompatible;
    const char *company;
    int i;
    int count_i;

    success = FALSE;

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

    http = CkHttp_Create();

    // Implements the following CURL command:

    // curl --location --request GET 'https://staging-api.yousign.com/files' \
    // --header 'Authorization: Bearer YOUR_API_KEY' \
    // --header 'Content-Type: application/json'

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

    // Adds the "Authorization: Bearer YOUR_API_KEY" header.
    CkHttp_putAuthToken(http,"YOUR_API_KEY");
    CkHttp_SetRequestHeader(http,"Content-Type","application/json");

    sbResponseBody = CkStringBuilder_Create();
    success = CkHttp_QuickGetSb(http,"https://staging-api.yousign.com/files",sbResponseBody);
    if (success == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    json = CkJsonObject_Create();
    CkJsonObject_LoadSb(json,sbResponseBody);
    CkJsonObject_putEmitCompact(json,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonObject_emit(json));

    respStatusCode = CkHttp_getLastStatus(http);
    printf("Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        printf("Response Header:\n");
        printf("%s\n",CkHttp_lastHeader(http));
        printf("Failed.\n");
        CkHttp_Dispose(http);
        CkStringBuilder_Dispose(sbResponseBody);
        CkJsonObject_Dispose(json);
        return;
    }

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "id": "\/files\/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    //   "name": "abc.pdf",
    //   "type": "signable",
    //   "contentType": "application\/pdf",
    //   "description": null,
    //   "createdAt": "2020-05-27T09:14:12+02:00",
    //   "updatedAt": "2020-05-27T09:14:12+02:00",
    //   "sha256": "ea2a92b0eff5bebfa3ccd869fd61e27bb7fe973d0dff63f106d8b0d614469fa0",
    //   "metadata": [
    //   ],
    //   "workspace": "\/workspaces\/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    //   "creator": null,
    //   "fileObjects": [
    //   ],
    //   "protected": false,
    //   "position": 0,
    //   "parent": null,
    //   "fieldsCompatible": true,
    //   "company": "\/companies\/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
    // }

    // Use the following online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    id = CkJsonObject_stringOf(json,"id");
    name = CkJsonObject_stringOf(json,"name");
    v_type = CkJsonObject_stringOf(json,"type");
    contentType = CkJsonObject_stringOf(json,"contentType");
    description = CkJsonObject_stringOf(json,"description");
    createdAt = CkJsonObject_stringOf(json,"createdAt");
    updatedAt = CkJsonObject_stringOf(json,"updatedAt");
    sha256 = CkJsonObject_stringOf(json,"sha256");
    workspace = CkJsonObject_stringOf(json,"workspace");
    creator = CkJsonObject_stringOf(json,"creator");
    v_protected = CkJsonObject_BoolOf(json,"protected");
    position = CkJsonObject_IntOf(json,"position");
    parent = CkJsonObject_stringOf(json,"parent");
    fieldsCompatible = CkJsonObject_BoolOf(json,"fieldsCompatible");
    company = CkJsonObject_stringOf(json,"company");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(json,"metadata");
    while (i < count_i) {
        CkJsonObject_putI(json,i);
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(json,"fileObjects");
    while (i < count_i) {
        CkJsonObject_putI(json,i);
        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(json);

    }