Node.js / easybill REST API / Create s serial number for a position
Back to Collection Items
var os = require('os');
if (os.platform() == 'win32') {
if (os.arch() == 'ia32') {
var chilkat = require('@chilkat/ck-node21-win-ia32');
} else {
var chilkat = require('@chilkat/ck-node21-win64');
}
} else if (os.platform() == 'linux') {
if (os.arch() == 'arm') {
var chilkat = require('@chilkat/ck-node21-arm');
} else if (os.arch() == 'x86') {
var chilkat = require('@chilkat/ck-node21-linux32');
} else {
var chilkat = require('@chilkat/ck-node21-linux64');
}
} else if (os.platform() == 'darwin') {
if (os.arch() == 'arm64') {
var chilkat = require('@chilkat/ck-node21-mac-m1');
} else {
var chilkat = require('@chilkat/ck-node21-macosx');
}
}
function chilkatExample() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
var http = new chilkat.Http();
var 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.
// {
// "serial_number": "<string>",
// "position_id": "<integer>",
// "id": "<long>",
// "document_id": "<long>",
// "document_position_id": "<long>",
// "used_at": "<string>",
// "created_at": "<string>"
// }
var json = new chilkat.JsonObject();
json.UpdateString("serial_number","<string>");
json.UpdateString("position_id","<integer>");
json.UpdateString("id","<long>");
json.UpdateString("document_id","<long>");
json.UpdateString("document_position_id","<long>");
json.UpdateString("used_at","<string>");
json.UpdateString("created_at","<string>");
http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("Authorization","{{apiKey}}");
http.SetRequestHeader("Accept","application/json");
// resp: HttpResponse
var resp = http.PostJson3("https://api.easybill.de/rest/v1/serial-numbers","application/json",json);
if (http.LastMethodSuccess == false) {
console.log(http.LastErrorText);
return;
}
var sbResponseBody = new chilkat.StringBuilder();
resp.GetBodySb(sbResponseBody);
var jResp = new chilkat.JsonObject();
jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = false;
console.log("Response Body:");
console.log(jResp.Emit());
var respStatusCode = resp.StatusCode;
console.log("Response Status Code = " + respStatusCode);
if (respStatusCode >= 400) {
console.log("Response Header:");
console.log(resp.Header);
console.log("Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "serial_number": "<string>",
// "position_id": "<integer>",
// "id": "<long>",
// "document_id": "<long>",
// "document_position_id": "<long>",
// "used_at": "<string>",
// "created_at": "<string>"
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
var serial_number = jResp.StringOf("serial_number");
var position_id = jResp.StringOf("position_id");
var id = jResp.StringOf("id");
var document_id = jResp.StringOf("document_id");
var document_position_id = jResp.StringOf("document_position_id");
var used_at = jResp.StringOf("used_at");
var created_at = jResp.StringOf("created_at");
}
chilkatExample();
Curl Command
curl -X POST
-H "Authorization: {{apiKey}}"
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"serial_number": "<string>",
"position_id": "<integer>",
"id": "<long>",
"document_id": "<long>",
"document_position_id": "<long>",
"used_at": "<string>",
"created_at": "<string>"
}'
https://api.easybill.de/rest/v1/serial-numbers
Postman Collection Item JSON
{
"name": "Create s serial number for a position",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"position_id\": \"<integer>\",\n \"id\": \"<long>\",\n \"document_id\": \"<long>\",\n \"document_position_id\": \"<long>\",\n \"used_at\": \"<string>\",\n \"created_at\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/serial-numbers",
"host": [
"{{baseUrl}}"
],
"path": [
"serial-numbers"
]
}
},
"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 \"serial_number\": \"<string>\",\n \"position_id\": \"<integer>\",\n \"id\": \"<long>\",\n \"document_id\": \"<long>\",\n \"document_position_id\": \"<long>\",\n \"used_at\": \"<string>\",\n \"created_at\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/serial-numbers",
"host": [
"{{baseUrl}}"
],
"path": [
"serial-numbers"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"serial_number\": \"<string>\",\n \"position_id\": \"<integer>\",\n \"id\": \"<long>\",\n \"document_id\": \"<long>\",\n \"document_position_id\": \"<long>\",\n \"used_at\": \"<string>\",\n \"created_at\": \"<string>\"\n}"
},
{
"name": "Invalid PositionID",
"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 \"serial_number\": \"<string>\",\n \"position_id\": \"<integer>\",\n \"id\": \"<long>\",\n \"document_id\": \"<long>\",\n \"document_position_id\": \"<long>\",\n \"used_at\": \"<string>\",\n \"created_at\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/serial-numbers",
"host": [
"{{baseUrl}}"
],
"path": [
"serial-numbers"
]
}
},
"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 \"serial_number\": \"<string>\",\n \"position_id\": \"<integer>\",\n \"id\": \"<long>\",\n \"document_id\": \"<long>\",\n \"document_position_id\": \"<long>\",\n \"used_at\": \"<string>\",\n \"created_at\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/serial-numbers",
"host": [
"{{baseUrl}}"
],
"path": [
"serial-numbers"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}