Chilkat Online Tools

C / easybill REST API / Create a new position-group discount

Back to Collection Items

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

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject json;
    HCkHttpResponse resp;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject jResp;
    int respStatusCode;
    const char *customer_id;
    int position_group_id;
    const char *id;
    int discount;
    const char *discount_type;

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

    http = CkHttp_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.

    // {
    //   "customer_id": "<long>",
    //   "position_group_id": -30250132,
    //   "id": "<long>",
    //   "discount": 0,
    //   "discount_type": "PERCENT"
    // }

    json = CkJsonObject_Create();
    CkJsonObject_UpdateString(json,"customer_id","<long>");
    CkJsonObject_UpdateInt(json,"position_group_id",-30250132);
    CkJsonObject_UpdateString(json,"id","<long>");
    CkJsonObject_UpdateInt(json,"discount",0);
    CkJsonObject_UpdateString(json,"discount_type","PERCENT");

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

    resp = CkHttp_PostJson3(http,"https://api.easybill.de/rest/v1/discounts/position-group","application/json",json);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        return;
    }

    sbResponseBody = CkStringBuilder_Create();
    CkHttpResponse_GetBodySb(resp,sbResponseBody);

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

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

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

    CkHttpResponse_Dispose(resp);

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

    // {
    //   "customer_id": "<long>",
    //   "position_group_id": -30250132,
    //   "id": "<long>",
    //   "discount": 0,
    //   "discount_type": "PERCENT"
    // }

    // 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.

    customer_id = CkJsonObject_stringOf(jResp,"customer_id");
    position_group_id = CkJsonObject_IntOf(jResp,"position_group_id");
    id = CkJsonObject_stringOf(jResp,"id");
    discount = CkJsonObject_IntOf(jResp,"discount");
    discount_type = CkJsonObject_stringOf(jResp,"discount_type");


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

    }

Curl Command

curl -X POST
	-H "Authorization: {{apiKey}}"
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "customer_id": "<long>",
  "position_group_id": -30250132,
  "id": "<long>",
  "discount": 0,
  "discount_type": "PERCENT"
}'
https://api.easybill.de/rest/v1/discounts/position-group

Postman Collection Item JSON

{
  "name": "Create a new position-group discount",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"customer_id\": \"<long>\",\n  \"position_group_id\": -30250132,\n  \"id\": \"<long>\",\n  \"discount\": 0,\n  \"discount_type\": \"PERCENT\"\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/discounts/position-group",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "discounts",
        "position-group"
      ]
    }
  },
  "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  \"customer_id\": \"<long>\",\n  \"position_group_id\": -30250132,\n  \"id\": \"<long>\",\n  \"discount\": 0,\n  \"discount_type\": \"PERCENT\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/discounts/position-group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "discounts",
            "position-group"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"customer_id\": \"<long>\",\n  \"position_group_id\": -30250132,\n  \"id\": \"<long>\",\n  \"discount\": 0,\n  \"discount_type\": \"PERCENT\"\n}"
    },
    {
      "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  \"customer_id\": \"<long>\",\n  \"position_group_id\": -30250132,\n  \"id\": \"<long>\",\n  \"discount\": 0,\n  \"discount_type\": \"PERCENT\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/discounts/position-group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "discounts",
            "position-group"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}