{ "opencollection": "1.0.0", "info": { "name": "freee API (Accounting and HR/Payroll) Account Items Employees 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": "Employees", "type": "folder" }, "items": [ { "info": { "name": "List employees", "type": "http" }, "http": { "method": "GET", "url": "https://api.freee.co.jp/hr/api/v1/employees", "params": [ { "name": "company_id", "value": "", "type": "query" }, { "name": "year", "value": "", "type": "query" }, { "name": "month", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Lists employees (従業員) for an HR company and month." }, { "info": { "name": "Create an employee", "type": "http" }, "http": { "method": "POST", "url": "https://api.freee.co.jp/hr/api/v1/employees", "body": { "type": "json", "data": "{}" } }, "docs": "Create an employee" }, { "info": { "name": "Get an employee", "type": "http" }, "http": { "method": "GET", "url": "https://api.freee.co.jp/hr/api/v1/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The numeric identifier of the resource." }, { "name": "company_id", "value": "", "type": "query" }, { "name": "year", "value": "", "type": "query" }, { "name": "month", "value": "", "type": "query" } ] }, "docs": "Get an employee" }, { "info": { "name": "Update an employee", "type": "http" }, "http": { "method": "PUT", "url": "https://api.freee.co.jp/hr/api/v1/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The numeric identifier of the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an employee" }, { "info": { "name": "Delete an employee", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.freee.co.jp/hr/api/v1/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The numeric identifier of the resource." }, { "name": "company_id", "value": "", "type": "query" } ] }, "docs": "Delete an employee" } ] } ], "bundled": true }