Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
' 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
' }
Dim json As New Chilkat.JsonObject
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")
Dim sbRequestBody As New Chilkat.StringBuilder
json.EmitSb(sbRequestBody)
Dim resp As Chilkat.HttpResponse = http.PTextSb("PUT","https://api.easybill.de/rest/v1/positions/:id",sbRequestBody,"utf-8","application/json",False,False)
If (http.LastMethodSuccess = False) Then
Debug.WriteLine(http.LastErrorText)
Exit Sub
End If
Dim sbResponseBody As New Chilkat.StringBuilder
resp.GetBodySb(sbResponseBody)
Dim jResp As New Chilkat.JsonObject
jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False
Debug.WriteLine("Response Body:")
Debug.WriteLine(jResp.Emit())
Dim respStatusCode As Integer = resp.StatusCode
Debug.WriteLine("Response Status Code = " & respStatusCode)
If (respStatusCode >= 400) Then
Debug.WriteLine("Response Header:")
Debug.WriteLine(resp.Header)
Debug.WriteLine("Failed.")
Exit Sub
End If
' 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
Dim v_number As String = jResp.StringOf("number")
Dim description As String = jResp.StringOf("description")
Dim sale_price As String = jResp.StringOf("sale_price")
Dim id As String = jResp.StringOf("id")
Dim v_type As String = jResp.StringOf("type")
Dim document_note As String = jResp.StringOf("document_note")
Dim note As String = jResp.StringOf("note")
Dim unit As String = jResp.StringOf("unit")
Dim export_identifier As String = jResp.StringOf("export_identifier")
Dim v_NULL As String = jResp.StringOf("export_identifier_extended.NULL")
Dim NStb As String = jResp.StringOf("export_identifier_extended.nStb")
Dim NStbUstID As String = jResp.StringOf("export_identifier_extended.nStbUstID")
Dim NStbNoneUstID As String = jResp.StringOf("export_identifier_extended.nStbNoneUstID")
Dim NStbIm As String = jResp.StringOf("export_identifier_extended.nStbIm")
Dim Revc As String = jResp.StringOf("export_identifier_extended.revc")
Dim IG As String = jResp.StringOf("export_identifier_extended.IG")
Dim AL As String = jResp.StringOf("export_identifier_extended.AL")
Dim SStfr As String = jResp.StringOf("export_identifier_extended.sStfr")
Dim SmallBusiness As String = jResp.StringOf("export_identifier_extended.smallBusiness")
Dim login_id As String = jResp.StringOf("login_id")
Dim price_type As String = jResp.StringOf("price_type")
Dim vat_percent As Integer = jResp.IntOf("vat_percent")
Dim sale_price2 As String = jResp.StringOf("sale_price2")
Dim sale_price3 As String = jResp.StringOf("sale_price3")
Dim sale_price4 As String = jResp.StringOf("sale_price4")
Dim sale_price5 As String = jResp.StringOf("sale_price5")
Dim sale_price6 As String = jResp.StringOf("sale_price6")
Dim sale_price7 As String = jResp.StringOf("sale_price7")
Dim sale_price8 As String = jResp.StringOf("sale_price8")
Dim sale_price9 As String = jResp.StringOf("sale_price9")
Dim sale_price10 As String = jResp.StringOf("sale_price10")
Dim cost_price As String = jResp.StringOf("cost_price")
Dim export_cost1 As String = jResp.StringOf("export_cost1")
Dim export_cost2 As String = jResp.StringOf("export_cost2")
Dim group_id As String = jResp.StringOf("group_id")
Dim stock As String = jResp.StringOf("stock")
Dim stock_count As Integer = jResp.IntOf("stock_count")
Dim stock_limit_notify As Boolean = jResp.BoolOf("stock_limit_notify")
Dim stock_limit_notify_frequency As String = jResp.StringOf("stock_limit_notify_frequency")
Dim stock_limit As Integer = jResp.IntOf("stock_limit")
Dim quantity As String = jResp.StringOf("quantity")
Dim archived As Boolean = jResp.BoolOf("archived")
Curl Command
curl -X PUT
-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/:id
Postman Collection Item JSON
{
"name": "Update position",
"request": {
"method": "PUT",
"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/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"positions",
":id"
],
"variable": [
{
"key": "id",
"value": "<long>",
"description": "(Required) ID of position"
}
]
}
},
"response": [
{
"name": "Successful operation",
"originalRequest": {
"method": "PUT",
"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/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"positions",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_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": "Invalid position",
"originalRequest": {
"method": "PUT",
"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/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"positions",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
},
{
"name": "Too Many Requests",
"originalRequest": {
"method": "PUT",
"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/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"positions",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}