{ "opencollection": "1.0.0", "info": { "name": "WorkMotion Partner Absences Employees API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Employees", "type": "folder" }, "items": [ { "info": { "name": "List employees", "type": "http" }, "http": { "method": "GET", "url": "https://api.workmotion.com/v1/employees", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "pageSize", "value": "", "type": "query" }, { "name": "status", "value": "", "type": "query" }, { "name": "country", "value": "", "type": "query", "description": "ISO 3166-1 alpha-2 country of employment." } ] }, "docs": "Returns a paginated list of talents employed through WorkMotion." }, { "info": { "name": "Create an employee", "type": "http" }, "http": { "method": "POST", "url": "https://api.workmotion.com/v1/employees", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new talent record, typically the first step of onboarding." }, { "info": { "name": "Retrieve an employee", "type": "http" }, "http": { "method": "GET", "url": "https://api.workmotion.com/v1/employees/:employeeId", "params": [ { "name": "employeeId", "value": "", "type": "path" } ] }, "docs": "Retrieve an employee" }, { "info": { "name": "Update an employee", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.workmotion.com/v1/employees/:employeeId", "params": [ { "name": "employeeId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an employee" } ] } ], "bundled": true }