POST

TeamHours.Setting

Alias of TeamHours.StartStop. Matches dashboard AJAX dashboard/setting/team_hours_setting for the header Start Work / Time clock.

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 TeamHours.Setting 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

  • Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
  • Send parameters as POST body fields exactly as documented.

Required Parameters

No body parameters are required for this function.

Optional Parameters

NameTypeSampleWhat it gives
val
post
int11 = start, 0 = stop (dashboard field).
timer_action
post
stringstartAlternative to val: start or stop.
id
post
int55team_hours row id when stopping.
project_id
post
int0Optional project id on start.
note
post
stringOptional note on stop.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/TeamHours.Setting",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "val": "1",
        "project_id": "0"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/TeamHours.Setting",
    "url_domain": "https:\/\/{domain}\/app\/TeamHours.Setting"
}

Endpoint

POST /app/TeamHours.Setting
POST https://{user}.bull36.com/app/TeamHours.Setting
POST https://{domain}/app/TeamHours.Setting

Sample Output

{
    "success": 1,
    "type": "start",
    "id": 55
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ val: '1' });
const res = await fetch('/app/TeamHours.Setting', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Timer is already start"
}