Paylocity Scheduling API

The Scheduling API from Paylocity — 3 operation(s) for scheduling.

OpenAPI Specification

paylocity-scheduling-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Paylocity Integrations REST Background Check Scheduling API
  description: The Paylocity Integrations API exposes employees, demographics, status, pay rates, earnings, deductions, local/state taxes, onboarding, payroll history, time and labor, scheduling, learning management, background check, and custom-field data. Authentication uses OAuth 2.0 client credentials issued by Paylocity. API hosts include api.paylocity.com (production) and a sandbox tenant provided after partner approval.
  version: '2.0'
  contact:
    name: Paylocity Developer Portal
    url: https://developer.paylocity.com/
servers:
- url: https://api.paylocity.com
  description: Production
security:
- oauth2ClientCredentials: []
tags:
- name: Scheduling
paths:
  /apihub/scheduling/v1/companies/{companyId}/shifts:
    parameters:
    - name: companyId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Scheduling
      summary: List shifts
      operationId: listShifts
      responses:
        '200':
          description: A list of shifts.
  /apihub/scheduling/v1/companies/{companyId}/employees/{employeeId}/shifts:
    parameters:
    - name: companyId
      in: path
      required: true
      schema:
        type: string
    - name: employeeId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Scheduling
      summary: List employee shifts
      operationId: listEmployeeShifts
      responses:
        '200':
          description: A list of employee shifts.
  /apihub/scheduling/v1/companies/{companyId}/openshifts:
    parameters:
    - name: companyId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Scheduling
      summary: List open shifts
      operationId: listOpenShifts
      responses:
        '200':
          description: A list of open shifts.
components:
  securitySchemes:
    oauth2ClientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.paylocity.com/IdentityServer/connect/token
          scopes: {}
      description: OAuth 2.0 client credentials grant. Credentials are provisioned by Paylocity.