Paylocity
Connector for the paylocity API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://api.paylocity.com/api - Auth: OAuth 2.0 client-credentials — the tool fetches a token from
https://api.paylocity.com/IdentityServer/connect/tokenusing yourclientId/clientSecret, then calls the API.
Operations
get_all_company_codes_and_descriptions_by_resour— GET /v2/companies/{companyId}/codes/{codeResource} — Get All Company Codesget_all_custom_fields_by_category— GET /v2/companies/{companyId}/customfields/{category} — Get All Custom Fieldsget_all_employees— GET /v2/companies/{companyId}/employees/ — Get all employeesget_employee— GET /v2/companies/{companyId}/employees/{employeeId} — Get employeeget_all_direct_deposit— GET /v2/companies/{companyId}/employees/{employeeId}/directDeposit — Get All Direct Depositget_all_earnings— GET /v2/companies/{companyId}/employees/{employeeId}/earnings — Get All Earnings
Inputs
clientId/clientSecret— your paylocity OAuth app credentialsscope— OAuth scopes (optional; defaults from the spec)operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_all_company_codes_and_descriptions_by_resour
clientId: <your client id>
clientSecret: <your client secret>