{ "opencollection": "1.0.0", "info": { "name": "Quinyx Absence Schedules Employee API", "version": "v2" }, "items": [ { "info": { "name": "Employee", "type": "folder" }, "items": [ { "info": { "name": "Get an employee", "type": "http" }, "http": { "method": "GET", "url": "https://api.quinyx.com/hr/v3/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Employee identifier" } ] }, "docs": "Retrieves a single employee by its identifier." }, { "info": { "name": "Update an employee", "type": "http" }, "http": { "method": "PUT", "url": "https://api.quinyx.com/hr/v3/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Employee identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the specified employee with the provided attributes and returns it" }, { "info": { "name": "Partially update an employee", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.quinyx.com/hr/v3/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Employee identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially updates the specified employee with the provided attributes and returns it." }, { "info": { "name": "Delete an employee", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.quinyx.com/hr/v3/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Employee identifier" } ] }, "docs": "Permanently deletes an employee" }, { "info": { "name": "List employees", "type": "http" }, "http": { "method": "GET", "url": "https://api.quinyx.com/hr/v3/employees", "params": [ { "name": "idIn", "value": "", "type": "query" }, { "name": "pageToken", "value": "", "type": "query", "description": "Cursor for the next page of results." }, { "name": "pageSize", "value": "", "type": "query", "description": "Maximum number of items to return." } ] }, "docs": "Returns a paginated list of employees." }, { "info": { "name": "Create an employee", "type": "http" }, "http": { "method": "POST", "url": "https://api.quinyx.com/hr/v3/employees", "body": { "type": "json", "data": "{}" } }, "docs": "Creates and returns the created employee." } ] } ], "bundled": true }