Info

Created 16-11-2021 by Lavinia Gheghea

Revision



Description

The API allows you to create, delete, and update job rate. You can retrieve individual job rate as well as a list of all job rates.

Endpoints


GET:  /jobrates


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
 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/jobrates" -H "accept: */*" -H "UID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -H "DEVICEID:demo@smarttid.dk" -H "API-Key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Response

200 (OK) :  array of job rates

Response body


{ "ID": 2, "EmployeeCode": "1009", "WorkTypeCode": "FLEX+", "ProfileCode": "FUNK", "JobCode": "1TESTCBZQ", "OperationCode": "TESTCBZQ", "ActivityCode": "TESTAKTIVITET", "StartDate": "2021-01-11T00:00:00", "EndDate": "2021-01-20T00:00:00", "Amount": 30 }, { "ID": 3, "EmployeeCode": "5264", "WorkTypeCode": "AFSPADSERING", "ProfileCode": "12", "JobCode": "1TESTCBZQ", "OperationCode": "TESTCBZQ", "ActivityCode": "ABC", "StartDate": "2021-01-12T00:00:00", "EndDate": "2021-01-13T00:00:00", "Amount": 25.36 } ]

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} : /jobrates/{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 job rate
 Integer
Curl example

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

Response

200 (OK) : the job rate
Response Body

 { "ID": 2, "EmployeeCode": "1009", "WorkTypeCode": "FLEX+", "ProfileCode": "FUNK", "JobCode": "1TESTCBZQ", "OperationCode": "TESTCBZQ", "ActivityCode": "TESTAKTIVITET", "StartDate": "2021-01-11T00:00:00", "EndDate": "2021-01-20T00:00:00", "Amount": 30 }
]

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: /jobrates


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

Request body

{
  "sEmployeeCode": "string",
  "sWorkTypeCode": "string",
  "sProfileCode": "string",
  "sJobCode": "string",
  "sOperationCode": "string",
  "sActivityCode": "string",
  "dtStartDate": "string",
  "dtEndDate": "string",
  "nAmount": 0
}

Curl example
curl -X POST "https://smartapi.smarttid.dk/jobrates" -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 "{ \"sEmployeeCode\": \"string\", \"sWorkTypeCode\": \"string\", \"sProfileCode\": \"string\", \"sJobCode\": \"string\", \"sOperationCode\": \"string\", \"sActivityCode\": \"string\", \"dtStartDate\": \"string\", \"dtEndDate\": \"string\", \"nAmount\": 0}"

Response

200 (OK) : The ID of the new job rate

Response Body
[
 {
  "ID": 1234
 }
]
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}: /jobrates/{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 job rate
 Integer

Request body

{ 
 "sEmployeeCode": "string", 
"sWorkTypeCode": "string", 
"sProfileCode": "string", 
"sJobCode": "string", 
"sOperationCode": "string", 
"sActivityCode": "string", 
"dtStartDate": "string", 
"dtEndDate": "string", 
"nAmount": 0 
}

Curl example

curl -X PUT "https://smartapi.smarttid.dk/jobrates/id" -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 "{ \"sEmployeeCode\": \"string\", \"sWorkTypeCode\": \"string\", \"sProfileCode\": \"string\", \"sJobCode\": \"string\", \"sOperationCode\": \"string\", \"sActivityCode\": \"string\", \"dtStartDate\": \"string\", \"dtEndDate\": \"string\", \"nAmount\": 0}"

Response

200 (OK) : success

400 (ERROR) : Error message

Response Body
Error message


DELETE{id}: /jobrates/{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 job rate
 Integer

Curl example

curl -X DELETE "https://smartapi.smarttid.dk/jobrates/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


SQL Procedure 

sp_JobRate

Object

Job Rate
 Name
 Description
 Type
 sEmployeeCode
Employee Code
 String
 sWorkTypeCode
 Work Type Code
 String
 sProfileCode
Profile Code
 String
 sJobCode
 Job Code
 String
 sOperationCode
Operation Code
 String
 sActivityCode
 Activity Code
 String
 dtStartDate
Start Date
 String
 dtEndDate
End Date
 String
 nAmount
 Amount
 Number(double)