POST

Workdiary.Entry.Get

Load one attendance row for the edit form (entrance/exit date+time, note, files, sick_day). For vacation rows (sick_day=2), returns vacation_from_date and vacation_to_date (both set to that row's calendar day, since each vacation day is stored as a separate row).

Permissions

  • User must be logged in with a valid bearer token.
  • Returned or changed records are limited by the user permissions, team access, folder access, and account settings.

Action

  • Runs the Workdiary.Entry.Get function and returns JSON.

Push Service

No push is sent because this function only reads data or returns helper information.

Automation

No automation is run for this function.

Special Instructions

  • sick_day values: 0 = normal, 1 = sick / block day, 2 = vacation day.
  • Vacation edit: use sick_day=2 with work_dairy_vacation_from_date on Workdiary.Attendance.Save; only that single row is updated.
  • Dashboard field names in response: entery_date, start_time, end_time, exit_date, sick_day, vacation_from_date, vacation_to_date.

Required Parameters

NameTypeSampleExplanation
team_hours_id
post
int55team_hours id. Aliases: data_id, id.

Optional Parameters

No optional body parameters are defined for this function.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Workdiary.Entry.Get",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "team_hours_id": "55"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Workdiary.Entry.Get",
    "url_domain": "https:\/\/{domain}\/app\/Workdiary.Entry.Get"
}

Endpoint

POST /app/Workdiary.Entry.Get
POST https://{user}.bull36.com/app/Workdiary.Entry.Get
POST https://{domain}/app/Workdiary.Entry.Get

Sample Output

{
    "success": 1,
    "data": {
        "entery_date": "2026-09-03",
        "start_time": "00:00",
        "end_time": "00:00",
        "exit_date": "2026-09-03",
        "sick_day": 2,
        "vacation_from_date": "2026-09-03",
        "vacation_to_date": "2026-09-03",
        "note": "Summer vacation"
    }
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ team_hours_id: '55' });
const res = await fetch('/app/Workdiary.Entry.Get', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const json = await res.json();
if (json.data && json.data.sick_day === 2) {
  console.log('Vacation day', json.data.vacation_from_date, json.data.vacation_to_date);
}

Error Example

{
    "success": 0,
    "message": "Attendance not found"
}