Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
# Use this online tool to generate code from sample JSON: Generate Code to Create JSON
# The following JSON is sent in the request body.
# {
# "name": "<string>",
# "status": "PROCESSING",
# "category": null,
# "category_custom": null,
# "created_at": "<dateTime>",
# "customer_id": null,
# "description": null,
# "document_id": null,
# "end_at": "<dateTime>",
# "finish_at": "<dateTime>",
# "id": "<long>",
# "login_id": "<long>",
# "position_id": null,
# "priority": "NORMAL",
# "project_id": null,
# "start_at": null,
# "status_percent": null
# }
set json [new_CkJsonObject]
CkJsonObject_UpdateString $json "name" "<string>"
CkJsonObject_UpdateString $json "status" "PROCESSING"
CkJsonObject_UpdateNull $json "category"
CkJsonObject_UpdateNull $json "category_custom"
CkJsonObject_UpdateString $json "created_at" "<dateTime>"
CkJsonObject_UpdateNull $json "customer_id"
CkJsonObject_UpdateNull $json "description"
CkJsonObject_UpdateNull $json "document_id"
CkJsonObject_UpdateString $json "end_at" "<dateTime>"
CkJsonObject_UpdateString $json "finish_at" "<dateTime>"
CkJsonObject_UpdateString $json "id" "<long>"
CkJsonObject_UpdateString $json "login_id" "<long>"
CkJsonObject_UpdateNull $json "position_id"
CkJsonObject_UpdateString $json "priority" "NORMAL"
CkJsonObject_UpdateNull $json "project_id"
CkJsonObject_UpdateNull $json "start_at"
CkJsonObject_UpdateNull $json "status_percent"
CkHttp_SetRequestHeader $http "Content-Type" "application/json"
CkHttp_SetRequestHeader $http "Authorization" "{{apiKey}}"
CkHttp_SetRequestHeader $http "Accept" "application/json"
set resp [new_CkHttpResponse]
set success [CkHttp_HttpJson $http "POST" "https://api.easybill.de/rest/v1/tasks" $json "application/json" $resp]
if {$success == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonObject $json
delete_CkHttpResponse $resp
exit
}
set sbResponseBody [new_CkStringBuilder]
CkHttpResponse_GetBodySb $resp $sbResponseBody
set jResp [new_CkJsonObject]
CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0
puts "Response Body:"
puts [CkJsonObject_emit $jResp]
set respStatusCode [CkHttpResponse_get_StatusCode $resp]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
puts "Response Header:"
puts [CkHttpResponse_header $resp]
puts "Failed."
delete_CkHttp $http
delete_CkJsonObject $json
delete_CkHttpResponse $resp
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp
exit
}
# Sample JSON response:
# (Sample code for parsing the JSON response is shown below)
# {
# "name": "<string>",
# "status": "PROCESSING",
# "category": null,
# "category_custom": null,
# "created_at": "<dateTime>",
# "customer_id": null,
# "description": null,
# "document_id": null,
# "end_at": "<dateTime>",
# "finish_at": "<dateTime>",
# "id": "<long>",
# "login_id": "<long>",
# "position_id": null,
# "priority": "NORMAL",
# "project_id": null,
# "start_at": null,
# "status_percent": null
# }
# Sample code for parsing the JSON response...
# Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
set name [CkJsonObject_stringOf $jResp "name"]
set status [CkJsonObject_stringOf $jResp "status"]
set category [CkJsonObject_stringOf $jResp "category"]
set category_custom [CkJsonObject_stringOf $jResp "category_custom"]
set created_at [CkJsonObject_stringOf $jResp "created_at"]
set customer_id [CkJsonObject_stringOf $jResp "customer_id"]
set description [CkJsonObject_stringOf $jResp "description"]
set document_id [CkJsonObject_stringOf $jResp "document_id"]
set end_at [CkJsonObject_stringOf $jResp "end_at"]
set finish_at [CkJsonObject_stringOf $jResp "finish_at"]
set id [CkJsonObject_stringOf $jResp "id"]
set login_id [CkJsonObject_stringOf $jResp "login_id"]
set position_id [CkJsonObject_stringOf $jResp "position_id"]
set priority [CkJsonObject_stringOf $jResp "priority"]
set project_id [CkJsonObject_stringOf $jResp "project_id"]
set start_at [CkJsonObject_stringOf $jResp "start_at"]
set status_percent [CkJsonObject_stringOf $jResp "status_percent"]
delete_CkHttp $http
delete_CkJsonObject $json
delete_CkHttpResponse $resp
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp
Curl Command
curl -X POST
-H "Authorization: {{apiKey}}"
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"name": "<string>",
"status": "PROCESSING",
"category": null,
"category_custom": null,
"created_at": "<dateTime>",
"customer_id": null,
"description": null,
"document_id": null,
"end_at": "<dateTime>",
"finish_at": "<dateTime>",
"id": "<long>",
"login_id": "<long>",
"position_id": null,
"priority": "NORMAL",
"project_id": null,
"start_at": null,
"status_percent": null
}'
https://api.easybill.de/rest/v1/tasks
Postman Collection Item JSON
{
"name": "Create task",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"status\": \"PROCESSING\",\n \"category\": null,\n \"category_custom\": null,\n \"created_at\": \"<dateTime>\",\n \"customer_id\": null,\n \"description\": null,\n \"document_id\": null,\n \"end_at\": \"<dateTime>\",\n \"finish_at\": \"<dateTime>\",\n \"id\": \"<long>\",\n \"login_id\": \"<long>\",\n \"position_id\": null,\n \"priority\": \"NORMAL\",\n \"project_id\": null,\n \"start_at\": null,\n \"status_percent\": null\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/tasks",
"host": [
"{{baseUrl}}"
],
"path": [
"tasks"
]
}
},
"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 \"name\": \"<string>\",\n \"status\": \"PROCESSING\",\n \"category\": null,\n \"category_custom\": null,\n \"created_at\": \"<dateTime>\",\n \"customer_id\": null,\n \"description\": null,\n \"document_id\": null,\n \"end_at\": \"<dateTime>\",\n \"finish_at\": \"<dateTime>\",\n \"id\": \"<long>\",\n \"login_id\": \"<long>\",\n \"position_id\": null,\n \"priority\": \"NORMAL\",\n \"project_id\": null,\n \"start_at\": null,\n \"status_percent\": null\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/tasks",
"host": [
"{{baseUrl}}"
],
"path": [
"tasks"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"name\": \"<string>\",\n \"status\": \"PROCESSING\",\n \"category\": null,\n \"category_custom\": null,\n \"created_at\": \"<dateTime>\",\n \"customer_id\": null,\n \"description\": null,\n \"document_id\": null,\n \"end_at\": \"<dateTime>\",\n \"finish_at\": \"<dateTime>\",\n \"id\": \"<long>\",\n \"login_id\": \"<long>\",\n \"position_id\": null,\n \"priority\": \"NORMAL\",\n \"project_id\": null,\n \"start_at\": null,\n \"status_percent\": null\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 \"name\": \"<string>\",\n \"status\": \"PROCESSING\",\n \"category\": null,\n \"category_custom\": null,\n \"created_at\": \"<dateTime>\",\n \"customer_id\": null,\n \"description\": null,\n \"document_id\": null,\n \"end_at\": \"<dateTime>\",\n \"finish_at\": \"<dateTime>\",\n \"id\": \"<long>\",\n \"login_id\": \"<long>\",\n \"position_id\": null,\n \"priority\": \"NORMAL\",\n \"project_id\": null,\n \"start_at\": null,\n \"status_percent\": null\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/tasks",
"host": [
"{{baseUrl}}"
],
"path": [
"tasks"
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}