Chilkat Online Tools

Android / easybill REST API / Create position

Back to Collection Items

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

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

    CkHttp http = new CkHttp();
    boolean success;

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

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

    // {
    //   "number": "<string>",
    //   "description": "<string>",
    //   "sale_price": "<float>",
    //   "id": "<long>",
    //   "type": "PRODUCT",
    //   "document_note": "<string>",
    //   "note": null,
    //   "unit": null,
    //   "export_identifier": null,
    //   "export_identifier_extended": {
    //     "NULL": null,
    //     "nStb": null,
    //     "nStbUstID": null,
    //     "nStbNoneUstID": null,
    //     "nStbIm": null,
    //     "revc": null,
    //     "IG": null,
    //     "AL": null,
    //     "sStfr": null,
    //     "smallBusiness": null
    //   },
    //   "login_id": "<long>",
    //   "price_type": "NETTO",
    //   "vat_percent": 19,
    //   "sale_price2": null,
    //   "sale_price3": null,
    //   "sale_price4": null,
    //   "sale_price5": null,
    //   "sale_price6": null,
    //   "sale_price7": null,
    //   "sale_price8": null,
    //   "sale_price9": null,
    //   "sale_price10": null,
    //   "cost_price": "<float>",
    //   "export_cost1": null,
    //   "export_cost2": null,
    //   "group_id": "<long>",
    //   "stock": "NO",
    //   "stock_count": 0,
    //   "stock_limit_notify": false,
    //   "stock_limit_notify_frequency": "ALWAYS",
    //   "stock_limit": 0,
    //   "quantity": null,
    //   "archived": false
    // }

    CkJsonObject json = new CkJsonObject();
    json.UpdateString("number","<string>");
    json.UpdateString("description","<string>");
    json.UpdateString("sale_price","<float>");
    json.UpdateString("id","<long>");
    json.UpdateString("type","PRODUCT");
    json.UpdateString("document_note","<string>");
    json.UpdateNull("note");
    json.UpdateNull("unit");
    json.UpdateNull("export_identifier");
    json.UpdateNull("export_identifier_extended.NULL");
    json.UpdateNull("export_identifier_extended.nStb");
    json.UpdateNull("export_identifier_extended.nStbUstID");
    json.UpdateNull("export_identifier_extended.nStbNoneUstID");
    json.UpdateNull("export_identifier_extended.nStbIm");
    json.UpdateNull("export_identifier_extended.revc");
    json.UpdateNull("export_identifier_extended.IG");
    json.UpdateNull("export_identifier_extended.AL");
    json.UpdateNull("export_identifier_extended.sStfr");
    json.UpdateNull("export_identifier_extended.smallBusiness");
    json.UpdateString("login_id","<long>");
    json.UpdateString("price_type","NETTO");
    json.UpdateInt("vat_percent",19);
    json.UpdateNull("sale_price2");
    json.UpdateNull("sale_price3");
    json.UpdateNull("sale_price4");
    json.UpdateNull("sale_price5");
    json.UpdateNull("sale_price6");
    json.UpdateNull("sale_price7");
    json.UpdateNull("sale_price8");
    json.UpdateNull("sale_price9");
    json.UpdateNull("sale_price10");
    json.UpdateString("cost_price","<float>");
    json.UpdateNull("export_cost1");
    json.UpdateNull("export_cost2");
    json.UpdateString("group_id","<long>");
    json.UpdateString("stock","NO");
    json.UpdateInt("stock_count",0);
    json.UpdateBool("stock_limit_notify",false);
    json.UpdateString("stock_limit_notify_frequency","ALWAYS");
    json.UpdateInt("stock_limit",0);
    json.UpdateNull("quantity");
    json.UpdateBool("archived",false);

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

    CkHttpResponse resp = http.PostJson3("https://api.easybill.de/rest/v1/positions","application/json",json);
    if (http.get_LastMethodSuccess() == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    resp.GetBodySb(sbResponseBody);

    CkJsonObject jResp = new CkJsonObject();
    jResp.LoadSb(sbResponseBody);
    jResp.put_EmitCompact(false);

    Log.i(TAG, "Response Body:");
    Log.i(TAG, jResp.emit());

    int respStatusCode = resp.get_StatusCode();
    Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
    if (respStatusCode >= 400) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, resp.header());
        Log.i(TAG, "Failed.");

        return;
        }

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

    // {
    //   "number": "<string>",
    //   "description": "<string>",
    //   "sale_price": "<float>",
    //   "id": "<long>",
    //   "type": "PRODUCT",
    //   "document_note": "<string>",
    //   "note": null,
    //   "unit": null,
    //   "export_identifier": null,
    //   "export_identifier_extended": {
    //     "NULL": null,
    //     "nStb": null,
    //     "nStbUstID": null,
    //     "nStbNoneUstID": null,
    //     "nStbIm": null,
    //     "revc": null,
    //     "IG": null,
    //     "AL": null,
    //     "sStfr": null,
    //     "smallBusiness": null
    //   },
    //   "login_id": "<long>",
    //   "price_type": "NETTO",
    //   "vat_percent": 19,
    //   "sale_price2": null,
    //   "sale_price3": null,
    //   "sale_price4": null,
    //   "sale_price5": null,
    //   "sale_price6": null,
    //   "sale_price7": null,
    //   "sale_price8": null,
    //   "sale_price9": null,
    //   "sale_price10": null,
    //   "cost_price": "<float>",
    //   "export_cost1": null,
    //   "export_cost2": null,
    //   "group_id": "<long>",
    //   "stock": "NO",
    //   "stock_count": 0,
    //   "stock_limit_notify": false,
    //   "stock_limit_notify_frequency": "ALWAYS",
    //   "stock_limit": 0,
    //   "quantity": null,
    //   "archived": false
    // }

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

    String v_number = jResp.stringOf("number");
    String description = jResp.stringOf("description");
    String sale_price = jResp.stringOf("sale_price");
    String id = jResp.stringOf("id");
    String v_type = jResp.stringOf("type");
    String document_note = jResp.stringOf("document_note");
    String note = jResp.stringOf("note");
    String unit = jResp.stringOf("unit");
    String export_identifier = jResp.stringOf("export_identifier");
    String v_NULL = jResp.stringOf("export_identifier_extended.NULL");
    String NStb = jResp.stringOf("export_identifier_extended.nStb");
    String NStbUstID = jResp.stringOf("export_identifier_extended.nStbUstID");
    String NStbNoneUstID = jResp.stringOf("export_identifier_extended.nStbNoneUstID");
    String NStbIm = jResp.stringOf("export_identifier_extended.nStbIm");
    String Revc = jResp.stringOf("export_identifier_extended.revc");
    String IG = jResp.stringOf("export_identifier_extended.IG");
    String AL = jResp.stringOf("export_identifier_extended.AL");
    String SStfr = jResp.stringOf("export_identifier_extended.sStfr");
    String SmallBusiness = jResp.stringOf("export_identifier_extended.smallBusiness");
    String login_id = jResp.stringOf("login_id");
    String price_type = jResp.stringOf("price_type");
    int vat_percent = jResp.IntOf("vat_percent");
    String sale_price2 = jResp.stringOf("sale_price2");
    String sale_price3 = jResp.stringOf("sale_price3");
    String sale_price4 = jResp.stringOf("sale_price4");
    String sale_price5 = jResp.stringOf("sale_price5");
    String sale_price6 = jResp.stringOf("sale_price6");
    String sale_price7 = jResp.stringOf("sale_price7");
    String sale_price8 = jResp.stringOf("sale_price8");
    String sale_price9 = jResp.stringOf("sale_price9");
    String sale_price10 = jResp.stringOf("sale_price10");
    String cost_price = jResp.stringOf("cost_price");
    String export_cost1 = jResp.stringOf("export_cost1");
    String export_cost2 = jResp.stringOf("export_cost2");
    String group_id = jResp.stringOf("group_id");
    String stock = jResp.stringOf("stock");
    int stock_count = jResp.IntOf("stock_count");
    boolean stock_limit_notify = jResp.BoolOf("stock_limit_notify");
    String stock_limit_notify_frequency = jResp.stringOf("stock_limit_notify_frequency");
    int stock_limit = jResp.IntOf("stock_limit");
    String quantity = jResp.stringOf("quantity");
    boolean archived = jResp.BoolOf("archived");

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

Curl Command

curl -X POST
	-H "Authorization: {{apiKey}}"
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "number": "<string>",
  "description": "<string>",
  "sale_price": "<float>",
  "id": "<long>",
  "type": "PRODUCT",
  "document_note": "<string>",
  "note": null,
  "unit": null,
  "export_identifier": null,
  "export_identifier_extended": {
    "NULL": null,
    "nStb": null,
    "nStbUstID": null,
    "nStbNoneUstID": null,
    "nStbIm": null,
    "revc": null,
    "IG": null,
    "AL": null,
    "sStfr": null,
    "smallBusiness": null
  },
  "login_id": "<long>",
  "price_type": "NETTO",
  "vat_percent": 19,
  "sale_price2": null,
  "sale_price3": null,
  "sale_price4": null,
  "sale_price5": null,
  "sale_price6": null,
  "sale_price7": null,
  "sale_price8": null,
  "sale_price9": null,
  "sale_price10": null,
  "cost_price": "<float>",
  "export_cost1": null,
  "export_cost2": null,
  "group_id": "<long>",
  "stock": "NO",
  "stock_count": 0,
  "stock_limit_notify": false,
  "stock_limit_notify_frequency": "ALWAYS",
  "stock_limit": 0,
  "quantity": null,
  "archived": false
}'
https://api.easybill.de/rest/v1/positions

Postman Collection Item JSON

{
  "name": "Create position",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"number\": \"<string>\",\n  \"description\": \"<string>\",\n  \"sale_price\": \"<float>\",\n  \"id\": \"<long>\",\n  \"type\": \"PRODUCT\",\n  \"document_note\": \"<string>\",\n  \"note\": null,\n  \"unit\": null,\n  \"export_identifier\": null,\n  \"export_identifier_extended\": {\n    \"NULL\": null,\n    \"nStb\": null,\n    \"nStbUstID\": null,\n    \"nStbNoneUstID\": null,\n    \"nStbIm\": null,\n    \"revc\": null,\n    \"IG\": null,\n    \"AL\": null,\n    \"sStfr\": null,\n    \"smallBusiness\": null\n  },\n  \"login_id\": \"<long>\",\n  \"price_type\": \"NETTO\",\n  \"vat_percent\": 19,\n  \"sale_price2\": null,\n  \"sale_price3\": null,\n  \"sale_price4\": null,\n  \"sale_price5\": null,\n  \"sale_price6\": null,\n  \"sale_price7\": null,\n  \"sale_price8\": null,\n  \"sale_price9\": null,\n  \"sale_price10\": null,\n  \"cost_price\": \"<float>\",\n  \"export_cost1\": null,\n  \"export_cost2\": null,\n  \"group_id\": \"<long>\",\n  \"stock\": \"NO\",\n  \"stock_count\": 0,\n  \"stock_limit_notify\": false,\n  \"stock_limit_notify_frequency\": \"ALWAYS\",\n  \"stock_limit\": 0,\n  \"quantity\": null,\n  \"archived\": false\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/positions",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "positions"
      ]
    }
  },
  "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  \"number\": \"<string>\",\n  \"description\": \"<string>\",\n  \"sale_price\": \"<float>\",\n  \"id\": \"<long>\",\n  \"type\": \"PRODUCT\",\n  \"document_note\": \"<string>\",\n  \"note\": null,\n  \"unit\": null,\n  \"export_identifier\": null,\n  \"export_identifier_extended\": {\n    \"NULL\": null,\n    \"nStb\": null,\n    \"nStbUstID\": null,\n    \"nStbNoneUstID\": null,\n    \"nStbIm\": null,\n    \"revc\": null,\n    \"IG\": null,\n    \"AL\": null,\n    \"sStfr\": null,\n    \"smallBusiness\": null\n  },\n  \"login_id\": \"<long>\",\n  \"price_type\": \"NETTO\",\n  \"vat_percent\": 19,\n  \"sale_price2\": null,\n  \"sale_price3\": null,\n  \"sale_price4\": null,\n  \"sale_price5\": null,\n  \"sale_price6\": null,\n  \"sale_price7\": null,\n  \"sale_price8\": null,\n  \"sale_price9\": null,\n  \"sale_price10\": null,\n  \"cost_price\": \"<float>\",\n  \"export_cost1\": null,\n  \"export_cost2\": null,\n  \"group_id\": \"<long>\",\n  \"stock\": \"NO\",\n  \"stock_count\": 0,\n  \"stock_limit_notify\": false,\n  \"stock_limit_notify_frequency\": \"ALWAYS\",\n  \"stock_limit\": 0,\n  \"quantity\": null,\n  \"archived\": false\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/positions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "positions"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"number\": \"<string>\",\n  \"description\": \"<string>\",\n  \"sale_price\": \"<float>\",\n  \"id\": \"<long>\",\n  \"type\": \"PRODUCT\",\n  \"document_note\": \"<string>\",\n  \"note\": null,\n  \"unit\": null,\n  \"export_identifier\": null,\n  \"export_identifier_extended\": {\n    \"NULL\": null,\n    \"nStb\": null,\n    \"nStbUstID\": null,\n    \"nStbNoneUstID\": null,\n    \"nStbIm\": null,\n    \"revc\": null,\n    \"IG\": null,\n    \"AL\": null,\n    \"sStfr\": null,\n    \"smallBusiness\": null\n  },\n  \"login_id\": \"<long>\",\n  \"price_type\": \"NETTO\",\n  \"vat_percent\": 19,\n  \"sale_price2\": null,\n  \"sale_price3\": null,\n  \"sale_price4\": null,\n  \"sale_price5\": null,\n  \"sale_price6\": null,\n  \"sale_price7\": null,\n  \"sale_price8\": null,\n  \"sale_price9\": null,\n  \"sale_price10\": null,\n  \"cost_price\": \"<float>\",\n  \"export_cost1\": null,\n  \"export_cost2\": null,\n  \"group_id\": \"<long>\",\n  \"stock\": \"NO\",\n  \"stock_count\": 0,\n  \"stock_limit_notify\": false,\n  \"stock_limit_notify_frequency\": \"ALWAYS\",\n  \"stock_limit\": 0,\n  \"quantity\": null,\n  \"archived\": false\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  \"number\": \"<string>\",\n  \"description\": \"<string>\",\n  \"sale_price\": \"<float>\",\n  \"id\": \"<long>\",\n  \"type\": \"PRODUCT\",\n  \"document_note\": \"<string>\",\n  \"note\": null,\n  \"unit\": null,\n  \"export_identifier\": null,\n  \"export_identifier_extended\": {\n    \"NULL\": null,\n    \"nStb\": null,\n    \"nStbUstID\": null,\n    \"nStbNoneUstID\": null,\n    \"nStbIm\": null,\n    \"revc\": null,\n    \"IG\": null,\n    \"AL\": null,\n    \"sStfr\": null,\n    \"smallBusiness\": null\n  },\n  \"login_id\": \"<long>\",\n  \"price_type\": \"NETTO\",\n  \"vat_percent\": 19,\n  \"sale_price2\": null,\n  \"sale_price3\": null,\n  \"sale_price4\": null,\n  \"sale_price5\": null,\n  \"sale_price6\": null,\n  \"sale_price7\": null,\n  \"sale_price8\": null,\n  \"sale_price9\": null,\n  \"sale_price10\": null,\n  \"cost_price\": \"<float>\",\n  \"export_cost1\": null,\n  \"export_cost2\": null,\n  \"group_id\": \"<long>\",\n  \"stock\": \"NO\",\n  \"stock_count\": 0,\n  \"stock_limit_notify\": false,\n  \"stock_limit_notify_frequency\": \"ALWAYS\",\n  \"stock_limit\": 0,\n  \"quantity\": null,\n  \"archived\": false\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/positions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "positions"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}