Info

Created 05-10-2020 by Lavinia Gheghea

Revision



Description

The API allows you to create, delete, and update  employee absence. You can retrieve individual employee absence as well as a list of all employee absences.

Endpoints


GET:  /employeeabsences?sEmployeeCode=xxxx


Parameters
Headers and Query
 Name
 Description
 Type
 API-key - required
 Authorization Token
 String(64)
 UID - required
 UID -how can be obtained
 String
 DEVICEID - required
  DEVICEID
 String
 sEmployeeCode- required
 Employee Code
 String
 offset
 starting record
 Integer
 limit
 how many records displayed on a page
 Integer
 OrderFieldName
 field name to order the recordset
 String
 OrderDirection
 ASC or DESC
 String
 Filter
 filter the recordset
 String

Curl example

curl -X GET "https://smartapi.smarttid.dk/employeeabsences?sEmployeeCode=xxxx" -H "accept: */*" -H "UID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "DEVICEID:demo@smarttid.dk" -H "API-Key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Response

200 (OK) :  array of employee absences

Response body

{ "ID": 821, "EmployeeCode": "1009", "StartDate": "2020-08-17T00:00:00", "EndDate": "2020-08-21T00:00:00", "WorkTypeCode": "FERIEFRI", "Description": "test", "Approved": true, "WorkCalendarCode": null, "StartTime": null, "EndTime": null, "RecurrenceCode": null, "WorkTypeDescription": "Feriefri timer" }, { "ID": 13, "EmployeeCode": "1009", "StartDate": "2019-01-28T00:00:00", "EndDate": "2019-01-31T00:00:00", "WorkTypeCode": "FERIE", "Description": "", "Approved": true, "WorkCalendarCode": "", "StartTime": null, "EndTime": null, "RecurrenceCode": "", "WorkTypeDescription": "Ferie" } ]


Response headers:
content-encoding: gzip 
 content-length: 238 
 content-type: application/json; charset=utf-8 
 date: Mon, 24 Aug 2020 08:01:23 GMT 
 server: Microsoft-IIS/10.0 
 vary: Accept-Encoding 
 x-pagination: {"totalCount":4,"totalFiltered":4,"Offset":0,"Limit":4,"Returned":4} 
 x-powered-by: ASP.NET 

400 (ERROR) : Error message

Response Body
Error message


GET{id} : /employeeabsences/{id}  


Parameters
 Name
 Description
 Type
 API-key - required
 Authorization Token 
 String(64)
 UID - required
UID -how can be obtained
 String
 DEVICEID - required
  DEVICEID
 String
 id- required
 ID of employee absence
 Integer
Curl example

curl -X GET "https://smartapi.smarttid.dk/employeeabsences/id" -H "accept: */*" -H "UID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "DEVICEID:demo@smarttid.dk" -H "API-Key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Response

200 (OK) : the employee absence

Response Body

 { "ID": 821, "EmployeeCode": "1009", "StartDate": "2020-08-17T00:00:00", "EndDate": "2020-08-21T00:00:00", "WorkTypeCode": "FERIEFRI", "Description": "test", "Approved": true, "WorkCalendarCode": null, "StartTime": null, "EndTime": null, "RecurrenceCode": null, "WorkTypeDescription": "Feriefri timer" }
]

Response Headers
content-encoding: gzip
  content-length: 175
  content-type: application/json; charset=utf-8 
 date: Mon, 24 Aug 2020 08:39:57 GMT 
 server: Microsoft-IIS/10.0 
 vary: Accept-Encoding  x-powered-by: ASP.NET 

400 (ERROR) : Error message

Response Body
Error message


POST: /employeeabsences?sEmployeeCode=xxxx


Parameters
 Name
 Description
 Type
 API-key - required
 Authorization Token 
 String(64)
 UID - required
 UID -how can be obtained
 String
 DEVICEID - required
  DEVICEID
 String
 sEmployeeCode- required
 Employee Code
 String

Request body
{
 "dtStartDate": "string",
  "dtEndDate": "string",
  "sWorkTypeCode": "string",
  "sDescription": "string",
  "bApproved": true,
  "sWorkCalendarCode": "string",
  "dtStartTime": "string",
  "dtEndTime": "string",
  "sRecurrenceCode": "string"
}

Curl example
curl -X POST "https://smartapi.smarttid.dk/employeeabsences?sEmployeeCode=xxxx" -H "accept: */*" -H "UID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "DEVICEID:demo@smarttid.dk" -H "API-Key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -H "Content-Type: application/json-patch+json" -d "{/"dtStartDate/": /"string/",/"dtEndDate/": /"string/",/"sWorkTypeCode/": /"string/",  /"sDescription/": /"string/",  /"bApproved/": true,  /"sWorkCalendarCode/": /"string/",  /"dtStartTime/": /"string/",  /"dtEndTime/": /"string/",  /"sRecurrenceCode/": /"string/"}"

Response

200 (OK) : The ID of the new employee absence

Response Body
[
 {
  "ID": 25033
 }
]
Response Headers
content-encoding: gzip 
 content-length: 138 
 content-type: application/json; charset=utf-8 
 date: Mon, 24 Aug 2020 09:24:44 GMT 
 server: Microsoft-IIS/10.0 
 vary: Accept-Encoding  x-powered-by: ASP.NET

400 (ERROR) : Error message

Response Body
Error message


PUT{id}: /employeeabsences/{id}?sEmployeeCode=xxxx


Parameters
 Name
 Description
 Type
 API-key - required
 Authorization Token
 String(64)
 UID - required
UID -how can be obtained
 String
 DEVICEID - required
 DEVICEID
 String
 sEmployeeCode - required
 Employee Code
 String
 id- required
 ID of employee absence
 Integer

Request body
{
 "dtStartDate": "string",
  "dtEndDate": "string",
  "sWorkTypeCode": "string",
  "sDescription": "string",
  "bApproved": true,
  "sWorkCalendarCode": "string",
  "dtStartTime": "string",
  "dtEndTime": "string",
  "sRecurrenceCode": "string"
}


Curl example

curl -X PUT "https://smartapi.smarttid.dk/employeeabsences/id?sEmployeeCode=xxx" -H "accept: */*" -H "UID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "DEVICEID:demo@smarttid.dk" -H "API-Key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -H "Content-Type: application/json-patch+json" -d "{/"dtStartDate/": /"string/",/"dtEndDate/": /"string/",/"sWorkTypeCode/": /"string/",  /"sDescription/": /"string/",  /"bApproved/": true,  /"sWorkCalendarCode/": /"string/",  /"dtStartTime/": /"string/",  /"dtEndTime/": /"string/",  /"sRecurrenceCode/": /"string/"}"

Response

200 (OK) : success

400 (ERROR) : Error message

Response Body
Error message


DELETE{id}: /employeeabsences/{id}


Parameters
 Name
 Description
 Type
 API-key - required
 Authorization Token
 String(64)
 UID - required
 UID -how can be obtained
 String
 DEVICEID - required
  DEVICEID
 String
 id- required
 ID of employee absence
 Integer

Curl example

curl -X DELETE "https://smartapi.smarttid.dk/employeeabsences/id" -H "accept: */*" -H "UID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "DEVICEID:demo@smarttid.dk" -H "API-Key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" 

Response
200 (OK) :Success


400 (ERROR) : Bad request

Response Body
Error message

Response headers

content-length: 84 
 content-type: text/plain; charset=utf-8 
 date: Tue, 25 Aug 2020 08:35:21 GMT 
 server: Microsoft-IIS/10.0 
 x-powered-by: ASP.NET


Object

Employee Absence
 Name
 Description
 Type
dtStartDate
 Start Date
 String
dtEndDate
 End Date
 String
 sWorkTypeCode
 WorkType Code
 String
 sDescription
 Description
 String
 bApproved
 Approved
 Boolean
 sWorkCalendarCode
 Work Calendar Code
 String
 dtStartTime
 Start Time
 String
 dtEndTime
 End Time
 String
 sRecurrenceCode
 Recurrence Code
 String