Get Many TimesheetEntryTypes
Bad Request
Unauthorized
Forbidden
Internal server error
curl --request GET \ --url 'https://api.alexishr.com/v1/timesheet-entry-type?select=SOME_ARRAY_VALUE&filters=SOME_OBJECT_VALUE&limit=SOME_INTEGER_VALUE&offset=SOME_INTEGER_VALUE&sort=SOME_OBJECT_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{- "status": "ok",
- "data": [
- {
- "id": "507f1f77bcf86cd799439011",
- "name": "string",
- "kind": "HOURLY_WAGE"
}
], - "total": 500,
- "count": 50,
- "offset": 50,
- "relations": { }
}Get One TimesheetEntryType
Bad Request
Unauthorized
Forbidden
Not Found
Internal server error
curl --request GET \ --url 'https://api.alexishr.com/v1/timesheet-entry-type/507f1f77bcf86cd799439011?select=SOME_ARRAY_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{- "status": "ok",
- "data": {
- "id": "507f1f77bcf86cd799439011",
- "name": "string",
- "kind": "HOURLY_WAGE"
}, - "relations": { }
}