{ "opencollection": "1.0.0", "info": { "name": "freee API (Accounting and HR/Payroll) Account Items Attendance API", "version": "2026-02-01" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://accounts.secure.freee.co.jp/public_api/authorize", "accessTokenUrl": "https://accounts.secure.freee.co.jp/public_api/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Attendance", "type": "folder" }, "items": [ { "info": { "name": "List time clocks", "type": "http" }, "http": { "method": "GET", "url": "https://api.freee.co.jp/hr/api/v1/employees/:employee_id/time_clocks", "params": [ { "name": "employee_id", "value": "", "type": "path" }, { "name": "company_id", "value": "", "type": "query" }, { "name": "from_date", "value": "", "type": "query" }, { "name": "to_date", "value": "", "type": "query" } ] }, "docs": "Lists an employee's time-clock punches (打刻)." }, { "info": { "name": "Register a time clock", "type": "http" }, "http": { "method": "POST", "url": "https://api.freee.co.jp/hr/api/v1/employees/:employee_id/time_clocks", "params": [ { "name": "employee_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Registers a time-clock punch (clock in / out / break) for an employee." }, { "info": { "name": "Get a work record", "type": "http" }, "http": { "method": "GET", "url": "https://api.freee.co.jp/hr/api/v1/employees/:employee_id/work_records/:date", "params": [ { "name": "employee_id", "value": "", "type": "path" }, { "name": "date", "value": "", "type": "path" }, { "name": "company_id", "value": "", "type": "query" } ] }, "docs": "Returns an employee's attendance work record (勤怠) for a single day." }, { "info": { "name": "Update a work record", "type": "http" }, "http": { "method": "PUT", "url": "https://api.freee.co.jp/hr/api/v1/employees/:employee_id/work_records/:date", "params": [ { "name": "employee_id", "value": "", "type": "path" }, { "name": "date", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a work record" }, { "info": { "name": "Delete a work record", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.freee.co.jp/hr/api/v1/employees/:employee_id/work_records/:date", "params": [ { "name": "employee_id", "value": "", "type": "path" }, { "name": "date", "value": "", "type": "path" }, { "name": "company_id", "value": "", "type": "query" } ] }, "docs": "Delete a work record" } ] } ], "bundled": true }