{ "opencollection": "1.0.0", "info": { "name": "Culture Amp Public Employees API", "version": "0.0.1" }, "items": [ { "info": { "name": "Employees", "type": "folder" }, "items": [ { "info": { "name": "List employees", "type": "http" }, "http": { "method": "GET", "url": "https://api.cultureamp.com/v1/employees", "params": [ { "name": "email", "value": "", "type": "query", "description": "The email of the employees to retrieve" }, { "name": "employee_identifier", "value": "", "type": "query", "description": "The unique id used by the employees company to identify the employee" }, { "name": "cursor", "value": "ewogICJQSyI6ICJzZGZzZGZzZGYtc2Rmc2Rmc2Qtc2Rmc2RmIiwKICAiU0siOiAic2Rmc2Rmc2RzZGYtc2RmYXNhc2ZzLS1zZGZzZGYiCn0J", "type": "query", "description": "The pagination key to use for the next page of results. \n\nThe last successful call will include this in the response body in `pagination.afterKey`.\n\nNote:\n* Pagination also works using the `after_key` query parameter. However, if both `cursor` and `after_key` are \nprovided, `cursor` will take precedence." } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Returns all employees in the account.\n\nIf both `email` and `employee_identifier` are provided, `employee_identifier` will take precedence.\n\n`cursor` is optional and used for pagination." }, { "info": { "name": "Get employee", "type": "http" }, "http": { "method": "GET", "url": "https://api.cultureamp.com/v1/employees/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "the Culture Amp employee identifier" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Returns the details of an employee corresponding to the provided Culture Amp employee identifier" }, { "info": { "name": "List demographics by employee", "type": "http" }, "http": { "method": "GET", "url": "https://api.cultureamp.com/v1/employees/:id/demographics", "params": [ { "name": "id", "value": "", "type": "path", "description": "the Culture Amp employee identifier" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Returns the demographic assignments for a given employee" } ] } ], "bundled": true }