Облік часу – будуйте на Flowtly

Використовуйте цей добірний знімок OpenAPI-схеми Flowtly, щоб планувати інтеграції, автоматизувати процеси та синхронізувати дані, на які спираються ваші команди.

Статус документації

Остання синхронізація: 2026-02-23 12:40 (версія застосунку 2.0.0)

Публікується лише частина сутностей. Запускайте обидві команди синхронізації, щоб оновити цю документацію після виходу нових можливостей Flowtly.

Облік часу

Синхронізуйте робочі логи з PM-інструментів у Flowtly.

Огляд сутності

Робочий час

Використовуйте записи WorkTime для завантаження, payroll і білінгу без повторного вводу годин командою.

Ендпоїнти

GET https://api.flowtly.eu/employee_working_hours

Список робочих логів

Читайте колекції employee_working_hours з фільтрами за співробітником, проєктом або діапазоном часу.

POST https://api.flowtly.eu/employee_working_hours

Створити робочий лог

Надішліть новий запис робочого часу з секундами, описом і посиланнями на співробітників/проєкти.

GET https://api.flowtly.eu/employee_working_hours/{id}

Отримати робочий лог за ID

Перегляньте один запис робочого часу.

PATCH https://api.flowtly.eu/employee_working_hours/{id}

Оновити робочий лог

Патчте тривалість у секундах, проєкт або нотатки при необхідності корекцій.

GET https://api.flowtly.eu/employee-working-hours

List employee-working-hours

Retrieve employee-working-hours with pagination and filters.

POST https://api.flowtly.eu/employee-working-hours

Create employee-working-hour

Create a new employee-working-hour entry.

GET https://api.flowtly.eu/employee-working-hours/{id}

Get employee-working-hour

Fetch a single employee-working-hour by ID.

PATCH https://api.flowtly.eu/employee-working-hours/{id}

Update employee-working-hour

Patch fields of an employee-working-hour entry.

DELETE https://api.flowtly.eu/employee-working-hours/{id}

Delete employee-working-hour

Remove an employee-working-hour entry.

GET https://api.flowtly.eu/work-times

List work-times

Retrieve work-time entries.

POST https://api.flowtly.eu/work-times

Create work-time

Create a work-time record.

GET https://api.flowtly.eu/work-times/{id}

Get work-time

Fetch a single work-time by ID.

PATCH https://api.flowtly.eu/work-times/{id}

Update work-time

Patch a work-time record.

DELETE https://api.flowtly.eu/work-times/{id}

Delete work-time

Delete a work-time record.

GET https://api.flowtly.eu/employees/{id}/working-hours-stats/{date}

Get working-hours stats

Retrieve aggregated working-hours stats for an employee at a date.

GET https://api.flowtly.eu/employees

Retrieves the collection of Employee resources.

Retrieves the collection of Employee resources.

POST https://api.flowtly.eu/employees

Creates a Employee resource.

Creates a Employee resource.

GET https://api.flowtly.eu/employees/me

Retrieves the collection of Employee resources.

Retrieves the collection of Employee resources.

GET https://api.flowtly.eu/employees/preview

Retrieves the collection of Employee resources.

Retrieves the collection of Employee resources.

GET https://api.flowtly.eu/employees/search

Retrieves the collection of Employee resources.

Retrieves the collection of Employee resources.

DELETE https://api.flowtly.eu/employees/{id}

Removes the Employee resource.

Removes the Employee resource.

GET https://api.flowtly.eu/employees/{id}

Retrieves a Employee resource.

Retrieves a Employee resource.

PATCH https://api.flowtly.eu/employees/{id}

Updates the Employee resource.

Updates the Employee resource.

GET https://api.flowtly.eu/employees/{id}/documents

Retrieves a Employee resource.

Retrieves a Employee resource.

GET https://api.flowtly.eu/employees/{id}/feedback-suggestion

Retrieves a Employee resource.

Retrieves a Employee resource.

GET https://api.flowtly.eu/employees/{id}/project-rates

Retrieves a Employee resource.

Retrieves a Employee resource.

DELETE https://api.flowtly.eu/employees/{id}/user

Removes the Employee resource.

Removes the Employee resource.

POST https://api.flowtly.eu/employees/{id}/user

Creates a Employee resource.

Creates a Employee resource.

Сценарії використання

Імпортуйте ретро-затверджені години з Asana, щоб PMO-дашборди у Flowtly були актуальні.
Надсилайте billable години з задачної дошки агентства у Flowtly для автоматичного інвойсингу.

Поля схеми

WorkTime
Поле Тип Опис
id integer Внутрішній ідентифікатор робочого логу.
employee string IRI співробітника, який подав час.
project string IRI проєкту, що отримує роботу.
date string Мітка часу, що вказує, коли була виконана робота.
seconds integer Тривалість у секундах.
description string | null Опціональна нотатка з описом активності.
createdAt string Коли запис створено у Flowtly.
updatedAt string Коли запис востаннє змінено.
deletedAt string | null Час мʼякого видалення, якщо є.
deleted boolean Check if the entity has been soft deleted.

Приклади

POST https://api.flowtly.eu/employee_working_hours

Надіслати billable лог з Asana

Надсилає лог на 7.5 години (27 000 секунд) з вашого PM-інструмента, щоб Flowtly оновив метрики завантаження та білінгу.

Пейлоад запиту
{
    "employee": "/api/employees/emp_102",
    "project": "/api/projects/aurora",
    "date": "2024-07-04T00:00:00+00:00",
    "seconds": 27000,
    "description": "Budget review for Aurora project"
}
Пейлоад відповіді
{
    "@id": "/api/employee_working_hours/wkt_9001",
    "@type": "WorkTime",
    "id": 9001,
    "employee": "/api/employees/emp_102",
    "project": "/api/projects/aurora",
    "date": "2024-07-04T00:00:00+00:00",
    "seconds": 27000,
    "description": "Budget review for Aurora project",
    "createdAt": "2024-07-04T18:05:00+00:00",
    "updatedAt": "2024-07-04T18:05:00+00:00",
    "deleted": false
}
Whatsapp