POST

Ticket.TeamScheduleGet

Get one tickets_teammember_time row by schedule id OR by team_member_id (anyOf — send one). Same data as dashboard ticket team member schedule edit form.

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 Ticket.TeamScheduleGet 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

  • Provide either id (schedule row) or team_member_id. At least one is required.
  • id aliases: data_id, appo_id, team_schedule_id, row_id.

Required Parameters

No body parameters are required for this function.

Optional Parameters

NameTypeSampleWhat it gives
id
post
int5Schedule row id. Aliases: data_id, appo_id, team_schedule_id, row_id. Required unless team_member_id is sent.
team_member_id
post
int47Lookup by member when id omitted. Alias: member_id. Required unless id is sent.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Ticket.TeamScheduleGet",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "id": "5"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Ticket.TeamScheduleGet",
    "url_domain": "https:\/\/{domain}\/app\/Ticket.TeamScheduleGet"
}

Endpoint

POST /app/Ticket.TeamScheduleGet
POST https://{user}.bull36.com/app/Ticket.TeamScheduleGet
POST https://{domain}/app/Ticket.TeamScheduleGet

Sample Output

{
    "success": 1,
    "data": {
        "id": 5,
        "team_member_id": 47,
        "color": "#1c7ed6",
        "working_day": [
            {
                "day_name": "Sunday",
                "from": "09:00",
                "to": "17:00"
            }
        ],
        "member": {
            "id": 47,
            "name": "Alex",
            "email": "[email protected]"
        }
    }
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ id: '5' });
const res = await fetch('/app/Ticket.TeamScheduleGet', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Team schedule not found"
}