Back to Collection Items
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
http.SetRequestHeader("Authorization","{{apiKey}}");
CkHttpResponse resp = http.QuickRequest("DELETE","https://api.easybill.de/rest/v1/position-groups/:id");
if (http.get_LastMethodSuccess() == false) {
System.out.println(http.lastErrorText());
return;
}
int respStatusCode = resp.get_StatusCode();
System.out.println("Response Status Code = " + respStatusCode);
if (respStatusCode != 204) {
System.out.println("Response Header:");
System.out.println(resp.header());
System.out.println("Response Body:");
System.out.println(resp.bodyStr());
System.out.println("Failed.");
return;
}
System.out.println("Success.");
}
}
Curl Command
curl -X DELETE
-H "Authorization: {{apiKey}}"
https://api.easybill.de/rest/v1/position-groups/:id
Postman Collection Item JSON
{
"name": "Delete position group",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{baseUrl}}/position-groups/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"position-groups",
":id"
],
"variable": [
{
"key": "id",
"value": "<long>",
"description": "(Required) ID of position group"
}
]
}
},
"response": [
{
"name": "Successful operation",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "Added as a part of security scheme: apikey",
"key": "Authorization",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/position-groups/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"position-groups",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
},
{
"name": "Not found",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "Added as a part of security scheme: apikey",
"key": "Authorization",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/position-groups/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"position-groups",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
},
{
"name": "Too Many Requests",
"originalRequest": {
"method": "DELETE",
"header": [
{
"description": "Added as a part of security scheme: apikey",
"key": "Authorization",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/position-groups/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"position-groups",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}