Skip to main content
GET
/
api
/
external
/
timesheets
/
{id}
/
rates
Get a timesheet entry's rate breakdown
curl --request GET \
  --url https://gateway-api.guardhousehq.com/api/external/timesheets/{id}/rates \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 123,
    "errorMessage": "<string>"
  },
  "data": {
    "scheduledStartTime": "2023-11-07T05:31:56Z",
    "scheduledEndTime": "2023-11-07T05:31:56Z",
    "payRate": {},
    "serviceRate": {},
    "allowances": [
      {}
    ]
  },
  "count": 123,
  "message": "<string>",
  "errors": [
    {
      "code": 100,
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT issued by POST /api/token/request. Send as Authorization: Bearer <token>.

Path Parameters

id
integer<int32>
required

Timesheet entry ID.

Response

Rate detail

The standard envelope for every JSON endpoint.

status
object
data
object

Pay/service rate breakdown for a single timesheet entry. Nested rate objects are typed as generic objects — inspect a sample response for the full shape.

count
integer<int32> | null
message
string
errors
object[]