Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
http.setRequestHeader("Authorization", value: "{{apiKey}}")
var resp: CkoHttpResponse? = http.quickRequest("DELETE", url: "https://api.easybill.de/rest/v1/tasks/:id")
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
var respStatusCode: Int = resp!.statusCode.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode != 204 {
print("Response Header:")
print("\(resp!.header!)")
print("Response Body:")
print("\(resp!.bodyStr!)")
print("Failed.")
resp = nil
return
}
resp = nil
print("Success.")
}
Curl Command
curl -X DELETE
-H "Authorization: {{apiKey}}"
https://api.easybill.de/rest/v1/tasks/:id
Postman Collection Item JSON
{
"name": "Delete task",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{baseUrl}}/tasks/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"tasks",
":id"
],
"variable": [
{
"key": "id",
"value": "<long>",
"description": "(Required) ID of task"
}
]
}
},
"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}}/tasks/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"tasks",
":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}}/tasks/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"tasks",
":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}}/tasks/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"tasks",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}