Swift3 / New FreshBooks / Create a Time Entry
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
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "time_entry": {
// "is_logged": true,
// "duration": 7200,
// "note": "Stuff",
// "started_at": "2016-08-16T20:00:00.000Z",
// "client_id": 123,
// "project_id": 123,
// "service_id": 123
// }
// }
let json = CkoJsonObject()!
json.updateBool("time_entry.is_logged", value: true)
json.updateInt("time_entry.duration", value: 7200)
json.update("time_entry.note", value: "Stuff")
json.update("time_entry.started_at", value: "2016-08-16T20:00:00.000Z")
json.updateInt("time_entry.client_id", value: 123)
json.updateInt("time_entry.project_id", value: 123)
json.updateInt("time_entry.service_id", value: 123)
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
http.setRequestHeader("Content-Type", value: "")
var resp: CkoHttpResponse? = http.postJson3("https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries", contentType: "", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
let sbResponseBody = CkoStringBuilder()!
resp!.getBodySb(sbResponseBody)
let jResp = CkoJsonObject()!
jResp.loadSb(sbResponseBody)
jResp.emitCompact = false
print("Response Body:")
print("\(jResp.emit()!)")
var respStatusCode: Int = resp!.statusCode.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode >= 400 {
print("Response Header:")
print("\(resp!.header!)")
print("Failed.")
resp = nil
return
}
resp = nil
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "time_entry": {
// "id": 47902064,
// "identity_id": 1882548,
// "timer": null,
// "is_logged": true,
// "started_at": "2016-08-16T20:00:00Z",
// "created_at": "2019-04-24T18:44:50Z",
// "duration": 7200,
// "client_id": 31006,
// "project_id": 2989082,
// "pending_client": null,
// "pending_project": null,
// "pending_task": null,
// "task_id": null,
// "service_id": null,
// "note": "Stuff",
// "active": true,
// "billable": false,
// "billed": false,
// "internal": false,
// "retainer_id": null
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
var Id: Int = jResp.int(of: "time_entry.id").intValue
var Identity_id: Int = jResp.int(of: "time_entry.identity_id").intValue
var Timer: String? = jResp.string(of: "time_entry.timer")
var Is_logged: Bool = jResp.bool(of: "time_entry.is_logged")
var Started_at: String? = jResp.string(of: "time_entry.started_at")
var Created_at: String? = jResp.string(of: "time_entry.created_at")
var Duration: Int = jResp.int(of: "time_entry.duration").intValue
var Client_id: Int = jResp.int(of: "time_entry.client_id").intValue
var Project_id: Int = jResp.int(of: "time_entry.project_id").intValue
var Pending_client: String? = jResp.string(of: "time_entry.pending_client")
var Pending_project: String? = jResp.string(of: "time_entry.pending_project")
var Pending_task: String? = jResp.string(of: "time_entry.pending_task")
var Task_id: String? = jResp.string(of: "time_entry.task_id")
var Service_id: String? = jResp.string(of: "time_entry.service_id")
var Note: String? = jResp.string(of: "time_entry.note")
var Active: Bool = jResp.bool(of: "time_entry.active")
var Billable: Bool = jResp.bool(of: "time_entry.billable")
var Billed: Bool = jResp.bool(of: "time_entry.billed")
var Internal: Bool = jResp.bool(of: "time_entry.internal")
var Retainer_id: String? = jResp.string(of: "time_entry.retainer_id")
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: "
-d '{
"time_entry": {
"is_logged": true,
"duration": 7200,
"note": "Stuff",
"started_at": "2016-08-16T20:00:00.000Z",
"client_id": {{clientId}},
"project_id": {{projectId}}.
"service_id": {{serviceid}}
}
}'
https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries
Postman Collection Item JSON
{
"name": "Create a Time Entry",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var jsonData = JSON.parse(responseBody);",
"postman.setEnvironmentVariable(\"timeEntryId\", jsonData.time_entry.id);"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "",
"name": "Content-Type",
"value": "",
"type": "text",
"disabled": true
},
{
"key": "Content-Type",
"value": "",
"disabled": true
}
],
"body": {
"mode": "raw",
"raw": "{\n \"time_entry\": {\n \"is_logged\": true,\n \"duration\": 7200,\n \"note\": \"Stuff\",\n \"started_at\": \"2016-08-16T20:00:00.000Z\",\n \"client_id\": {{clientId}},\n \"project_id\": {{projectId}}.\n \"service_id\": {{serviceid}}\n }\n}"
},
"url": {
"raw": "https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"timetracking",
"business",
"{{businessId}}",
"time_entries"
]
}
},
"response": [
{
"name": "Create a Time Entry",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"time_entry\": {\n \"is_logged\": true,\n \"duration\": 7200,\n \"note\": \"Stuff\",\n \"started_at\": \"2016-08-16T20:00:00.000Z\",\n \"client_id\": {{clientId}},\n \"project_id\": {{projectId}}\n }\n}"
},
"url": {
"raw": "https://api.freshbooks.com/timetracking/business/{{businessId}}/time_entries",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"timetracking",
"business",
"{{businessId}}",
"time_entries"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Server",
"value": "nginx"
},
{
"key": "Content-Type",
"value": "application/vnd.api+json"
},
{
"key": "X-Version",
"value": "1904.25.0"
},
{
"key": "X-NewRelic-App-Data",
"value": "PxQBWV5TCBABVllUBAQOU10TGhE1AwE2QgNWEVlbQFtcCxYnRA9QFg1ZWU4FDFZFVRYSBxlDUhULRERQBxVNFlkPXT1dVkBAWgBKT0MEQA0RRFQEXBdRXlU7BAxDQ14DFxMaA05WTVMEVg1WCA8MBARRClAHVQNUSAQGVEpBWlYHVgQABwEBVQYDUgBUBUFOVgNUEV1l"
},
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Expires",
"value": "Tue, 24 Apr 2018 18:44:50 GMT"
},
{
"key": "Cache-Control",
"value": "no-cache"
},
{
"key": "Via",
"value": "1.1 google"
},
{
"key": "Via",
"value": "1.1 varnish"
},
{
"key": "Content-Length",
"value": "444"
},
{
"key": "Accept-Ranges",
"value": "bytes"
},
{
"key": "Date",
"value": "Wed, 24 Apr 2019 18:44:50 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "X-Served-By",
"value": "cache-mdw17369-MDW"
},
{
"key": "X-Cache",
"value": "MISS"
},
{
"key": "X-Cache-Hits",
"value": "0"
},
{
"key": "Country",
"value": "CA"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000; includeSubDomains; preload"
}
],
"cookie": [
],
"body": "{\n \"time_entry\": {\n \"id\": 47902064,\n \"identity_id\": 1882548,\n \"timer\": null,\n \"is_logged\": true,\n \"started_at\": \"2016-08-16T20:00:00Z\",\n \"created_at\": \"2019-04-24T18:44:50Z\",\n \"duration\": 7200,\n \"client_id\": 31006,\n \"project_id\": 2989082,\n \"pending_client\": null,\n \"pending_project\": null,\n \"pending_task\": null,\n \"task_id\": null,\n \"service_id\": null,\n \"note\": \"Stuff\",\n \"active\": true,\n \"billable\": false,\n \"billed\": false,\n \"internal\": false,\n \"retainer_id\": null\n }\n}"
}
]
}