Chilkat Online Tools

PureBasic / easybill REST API / Create project

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

    ; This example assumes the Chilkat API to have been previously unlocked.
    ; See Global Unlock Sample for sample code.

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ; 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>",
    ;   "budget_amount": 0,
    ;   "budget_time": 0,
    ;   "customer_id": null,
    ;   "hourly_rate": "<float>",
    ;   "id": "<long>",
    ;   "login_id": "<long>",
    ;   "note": null,
    ;   "status": "OPEN",
    ;   "due_at": null,
    ;   "budget_notify_frequency": "ALWAYS",
    ;   "consumed_time": "<integer>",
    ;   "consumed_amount": "<integer>"
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"name","<string>")
    CkJsonObject::ckUpdateInt(json,"budget_amount",0)
    CkJsonObject::ckUpdateInt(json,"budget_time",0)
    CkJsonObject::ckUpdateNull(json,"customer_id")
    CkJsonObject::ckUpdateString(json,"hourly_rate","<float>")
    CkJsonObject::ckUpdateString(json,"id","<long>")
    CkJsonObject::ckUpdateString(json,"login_id","<long>")
    CkJsonObject::ckUpdateNull(json,"note")
    CkJsonObject::ckUpdateString(json,"status","OPEN")
    CkJsonObject::ckUpdateNull(json,"due_at")
    CkJsonObject::ckUpdateString(json,"budget_notify_frequency","ALWAYS")
    CkJsonObject::ckUpdateString(json,"consumed_time","<integer>")
    CkJsonObject::ckUpdateString(json,"consumed_amount","<integer>")

    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
    CkHttp::ckSetRequestHeader(http,"Authorization","{{apiKey}}")
    CkHttp::ckSetRequestHeader(http,"Accept","application/json")

    resp.i = CkHttp::ckPostJson3(http,"https://api.easybill.de/rest/v1/projects","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttpResponse::ckGetBodySb(resp,sbResponseBody)

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)
    CkJsonObject::setCkEmitCompact(jResp, 0)

    Debug "Response Body:"
    Debug CkJsonObject::ckEmit(jResp)

    respStatusCode.i = CkHttpResponse::ckStatusCode(resp)
    Debug "Response Status Code = " + Str(respStatusCode)
    If respStatusCode >= 400
        Debug "Response Header:"
        Debug CkHttpResponse::ckHeader(resp)
        Debug "Failed."
        CkHttpResponse::ckDispose(resp)

        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbResponseBody)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

    CkHttpResponse::ckDispose(resp)

    ; Sample JSON response:
    ; (Sample code for parsing the JSON response is shown below)

    ; {
    ;   "name": "<string>",
    ;   "budget_amount": 0,
    ;   "budget_time": 0,
    ;   "customer_id": null,
    ;   "hourly_rate": "<float>",
    ;   "id": "<long>",
    ;   "login_id": "<long>",
    ;   "note": null,
    ;   "status": "OPEN",
    ;   "due_at": null,
    ;   "budget_notify_frequency": "ALWAYS",
    ;   "consumed_time": "<integer>",
    ;   "consumed_amount": "<integer>"
    ; }

    ; Sample code for parsing the JSON response...
    ; Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    name.s = CkJsonObject::ckStringOf(jResp,"name")
    budget_amount.i = CkJsonObject::ckIntOf(jResp,"budget_amount")
    budget_time.i = CkJsonObject::ckIntOf(jResp,"budget_time")
    customer_id.s = CkJsonObject::ckStringOf(jResp,"customer_id")
    hourly_rate.s = CkJsonObject::ckStringOf(jResp,"hourly_rate")
    id.s = CkJsonObject::ckStringOf(jResp,"id")
    login_id.s = CkJsonObject::ckStringOf(jResp,"login_id")
    note.s = CkJsonObject::ckStringOf(jResp,"note")
    status.s = CkJsonObject::ckStringOf(jResp,"status")
    due_at.s = CkJsonObject::ckStringOf(jResp,"due_at")
    budget_notify_frequency.s = CkJsonObject::ckStringOf(jResp,"budget_notify_frequency")
    consumed_time.s = CkJsonObject::ckStringOf(jResp,"consumed_time")
    consumed_amount.s = CkJsonObject::ckStringOf(jResp,"consumed_amount")


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Authorization: {{apiKey}}"
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "name": "<string>",
  "budget_amount": 0,
  "budget_time": 0,
  "customer_id": null,
  "hourly_rate": "<float>",
  "id": "<long>",
  "login_id": "<long>",
  "note": null,
  "status": "OPEN",
  "due_at": null,
  "budget_notify_frequency": "ALWAYS",
  "consumed_time": "<integer>",
  "consumed_amount": "<integer>"
}'
https://api.easybill.de/rest/v1/projects

Postman Collection Item JSON

{
  "name": "Create project",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"name\": \"<string>\",\n  \"budget_amount\": 0,\n  \"budget_time\": 0,\n  \"customer_id\": null,\n  \"hourly_rate\": \"<float>\",\n  \"id\": \"<long>\",\n  \"login_id\": \"<long>\",\n  \"note\": null,\n  \"status\": \"OPEN\",\n  \"due_at\": null,\n  \"budget_notify_frequency\": \"ALWAYS\",\n  \"consumed_time\": \"<integer>\",\n  \"consumed_amount\": \"<integer>\"\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/projects",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "projects"
      ]
    }
  },
  "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  \"budget_amount\": 0,\n  \"budget_time\": 0,\n  \"customer_id\": null,\n  \"hourly_rate\": \"<float>\",\n  \"id\": \"<long>\",\n  \"login_id\": \"<long>\",\n  \"note\": null,\n  \"status\": \"OPEN\",\n  \"due_at\": null,\n  \"budget_notify_frequency\": \"ALWAYS\",\n  \"consumed_time\": \"<integer>\",\n  \"consumed_amount\": \"<integer>\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "projects"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"name\": \"<string>\",\n  \"budget_amount\": 0,\n  \"budget_time\": 0,\n  \"customer_id\": null,\n  \"hourly_rate\": \"<float>\",\n  \"id\": \"<long>\",\n  \"login_id\": \"<long>\",\n  \"note\": null,\n  \"status\": \"OPEN\",\n  \"due_at\": null,\n  \"budget_notify_frequency\": \"ALWAYS\",\n  \"consumed_time\": \"<integer>\",\n  \"consumed_amount\": \"<integer>\"\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  \"budget_amount\": 0,\n  \"budget_time\": 0,\n  \"customer_id\": null,\n  \"hourly_rate\": \"<float>\",\n  \"id\": \"<long>\",\n  \"login_id\": \"<long>\",\n  \"note\": null,\n  \"status\": \"OPEN\",\n  \"due_at\": null,\n  \"budget_notify_frequency\": \"ALWAYS\",\n  \"consumed_time\": \"<integer>\",\n  \"consumed_amount\": \"<integer>\"\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "projects"
          ]
        }
      },
      "status": "Too Many Requests",
      "code": 429,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}