Chilkat Online Tools

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

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
customer_id: PWideChar;
position_group_id: Integer;
id: PWideChar;
discount: Integer;
discount_type: PWideChar;

begin
// 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) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

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

jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);

Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));

respStatusCode := CkHttpResponse_getStatusCode(resp);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkHttpResponse__header(resp));
    Memo1.Lines.Add('Failed.');
    CkHttpResponse_Dispose(resp);
    Exit;
  end;
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

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": ""
    }
  ]
}