GET api/get_timesheet/{date_start}/{date_end}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
date_start

date

Required

date_end

date

Required

Body Parameters

None.

Response Information

Resource Description

ResponseContractOfTimeSheet[]
NameDescriptionTypeAdditional information
message

string

None.

message_type

message_type

None.

message_code

integer

None.

data

Collection of TimeSheet

None.

per_page

integer

None.

total_data

integer

None.

total_page

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "message": "sample string 1",
  "message_type": 0,
  "message_code": 2,
  "data": [
    {
      "object_type": "sample string 1",
      "object_value": "sample string 2",
      "description": "sample string 3",
      "period": "20240919154351",
      "time_start": "20240919154351",
      "time_end": "20240919154351"
    },
    {
      "object_type": "sample string 1",
      "object_value": "sample string 2",
      "description": "sample string 3",
      "period": "20240919154351",
      "time_start": "20240919154351",
      "time_end": "20240919154351"
    }
  ],
  "per_page": 3,
  "total_data": 4,
  "total_page": 5
}