Chilkat Online Tools

unicodeC / easybill REST API / Create a stock entry for a position

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *stock_count;
    const wchar_t *position_id;
    const wchar_t *id;
    const wchar_t *note;
    const wchar_t *document_id;
    const wchar_t *document_position_id;
    const wchar_t *stored_at;
    const wchar_t *created_at;
    const wchar_t *updated_at;

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

    http = CkHttpW_Create();

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

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

    // {
    //   "stock_count": "<long>",
    //   "position_id": "<long>",
    //   "id": "<long>",
    //   "note": "<string>",
    //   "document_id": "<long>",
    //   "document_position_id": "<long>",
    //   "stored_at": "<string>",
    //   "created_at": "<string>",
    //   "updated_at": "<string>"
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"stock_count",L"<long>");
    CkJsonObjectW_UpdateString(json,L"position_id",L"<long>");
    CkJsonObjectW_UpdateString(json,L"id",L"<long>");
    CkJsonObjectW_UpdateString(json,L"note",L"<string>");
    CkJsonObjectW_UpdateString(json,L"document_id",L"<long>");
    CkJsonObjectW_UpdateString(json,L"document_position_id",L"<long>");
    CkJsonObjectW_UpdateString(json,L"stored_at",L"<string>");
    CkJsonObjectW_UpdateString(json,L"created_at",L"<string>");
    CkJsonObjectW_UpdateString(json,L"updated_at",L"<string>");

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
    CkHttpW_SetRequestHeader(http,L"Authorization",L"{{apiKey}}");
    CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");

    resp = CkHttpW_PostJson3(http,L"https://api.easybill.de/rest/v1/stocks",L"application/json",json);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);

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

    // {
    //   "stock_count": "<long>",
    //   "position_id": "<long>",
    //   "id": "<long>",
    //   "note": "<string>",
    //   "document_id": "<long>",
    //   "document_position_id": "<long>",
    //   "stored_at": "<string>",
    //   "created_at": "<string>",
    //   "updated_at": "<string>"
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    stock_count = CkJsonObjectW_stringOf(jResp,L"stock_count");
    position_id = CkJsonObjectW_stringOf(jResp,L"position_id");
    id = CkJsonObjectW_stringOf(jResp,L"id");
    note = CkJsonObjectW_stringOf(jResp,L"note");
    document_id = CkJsonObjectW_stringOf(jResp,L"document_id");
    document_position_id = CkJsonObjectW_stringOf(jResp,L"document_position_id");
    stored_at = CkJsonObjectW_stringOf(jResp,L"stored_at");
    created_at = CkJsonObjectW_stringOf(jResp,L"created_at");
    updated_at = CkJsonObjectW_stringOf(jResp,L"updated_at");


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

Curl Command

curl -X POST
	-H "Authorization: {{apiKey}}"
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "stock_count": "<long>",
  "position_id": "<long>",
  "id": "<long>",
  "note": "<string>",
  "document_id": "<long>",
  "document_position_id": "<long>",
  "stored_at": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}'
https://api.easybill.de/rest/v1/stocks

Postman Collection Item JSON

{
  "name": "Create a stock entry for a position",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"stock_count\": \"<long>\",\n  \"position_id\": \"<long>\",\n  \"id\": \"<long>\",\n  \"note\": \"<string>\",\n  \"document_id\": \"<long>\",\n  \"document_position_id\": \"<long>\",\n  \"stored_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/stocks",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "stocks"
      ]
    }
  },
  "response": [
    {
      "name": "Successful operation",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "Authorization",
            "value": "<API Key>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"stock_count\": \"<long>\",\n  \"position_id\": \"<long>\",\n  \"id\": \"<long>\",\n  \"note\": \"<string>\",\n  \"document_id\": \"<long>\",\n  \"document_position_id\": \"<long>\",\n  \"stored_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/stocks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stocks"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"stock_count\": \"<long>\",\n  \"position_id\": \"<long>\",\n  \"id\": \"<long>\",\n  \"note\": \"<string>\",\n  \"document_id\": \"<long>\",\n  \"document_position_id\": \"<long>\",\n  \"stored_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}"
    },
    {
      "name": "Invalid position_id or stock_count",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "Authorization",
            "value": "<API Key>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"stock_count\": \"<long>\",\n  \"position_id\": \"<long>\",\n  \"id\": \"<long>\",\n  \"note\": \"<string>\",\n  \"document_id\": \"<long>\",\n  \"document_position_id\": \"<long>\",\n  \"stored_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/stocks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stocks"
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "Too Many Requests",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: apikey",
            "key": "Authorization",
            "value": "<API Key>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"stock_count\": \"<long>\",\n  \"position_id\": \"<long>\",\n  \"id\": \"<long>\",\n  \"note\": \"<string>\",\n  \"document_id\": \"<long>\",\n  \"document_position_id\": \"<long>\",\n  \"stored_at\": \"<string>\",\n  \"created_at\": \"<string>\",\n  \"updated_at\": \"<string>\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/stocks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stocks"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}