Paychex Time Entries API

Time entry, punch, and time-worked submissions.

Operations 1

POST /time/v1/timeentries Submit Time Entries #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/paychex-developer-time-entries-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

paychex-developer-time-entries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Paychex Payroll Companies Time Entries API
  description: The Paychex Payroll Companies API exposes the list of payroll-bearing companies that a registered Paychex application has been granted access to, along with each company's configuration. Companies are the root tenant resource for all other Paychex REST APIs — workers and time are nested underneath a company.
  version: 1.0.0
  contact:
    name: Paychex Developer Program
    url: https://developer.paychex.com/
  license:
    name: Paychex API Terms of Use
    url: https://developer.paychex.com/
servers:
- url: https://api.paychex.com
  description: Paychex Production API
security:
- oauth2ClientCredentials: []
tags:
- name: Time Entries
  description: Time entry, punch, and time-worked submissions.
paths:
  /time/v1/timeentries:
    post:
      operationId: createTimeEntries
      summary: Submit Time Entries
      description: Submit one or more time entries (worked hours, earnings categories, and labor allocations) for workers inside a Paychex Flex company.
      tags:
      - Time Entries
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TimeEntriesRequest'
      responses:
        '201':
          description: Time entries accepted for payroll processing.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimeEntriesResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  responses:
    Unauthorized:
      description: Missing or invalid OAuth 2.0 access token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    TooManyRequests:
      description: Rate limit exceeded; retry after the indicated interval.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadRequest:
      description: Request payload failed validation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Registered application is not authorized for this company resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    TimeEntriesResponse:
      type: object
      properties:
        accepted:
          type: integer
          description: Number of entries accepted for processing.
        rejected:
          type: integer
          description: Number of entries rejected with validation errors.
        results:
          type: array
          items:
            $ref: '#/components/schemas/TimeEntryResult'
    TimeEntriesRequest:
      type: object
      required:
      - companyId
      - entries
      properties:
        companyId:
          type: string
          description: Paychex Flex company identifier the entries apply to.
        entries:
          type: array
          items:
            $ref: '#/components/schemas/TimeEntry'
    TimeEntryResult:
      type: object
      properties:
        workerId:
          type: string
        workDate:
          type: string
          format: date
        status:
          type: string
          description: ACCEPTED or REJECTED.
        message:
          type: string
    TimeEntry:
      type: object
      required:
      - workerId
      - workDate
      - hours
      - earningType
      properties:
        workerId:
          type: string
          description: Paychex Flex worker identifier.
        workDate:
          type: string
          format: date
          description: Calendar date the work was performed (ISO 8601).
        hours:
          type: number
          format: double
          description: Hours worked, in decimal hours.
        earningType:
          type: string
          description: Earnings code (e.g., REG, OT, PTO).
        rateOverride:
          type: number
          format: double
          description: Optional override hourly rate.
        departmentCode:
          type: string
          description: Department/labor allocation code.
        notes:
          type: string
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        details:
          type: string
  securitySchemes:
    oauth2ClientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.paychex.com/auth/oauth/v2/token
          scopes: {}