Shop-Ware Staff shift clocks API

The Staff shift clocks API from Shop-Ware — 1 operation(s) for staff shift clocks.

Operations 1

GET /api/v1/tenants/{tenant_id}/staffs/{staff_id}/time_clocks Get shift clocks for staff

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/shop-ware-staff-shift-clocks-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

shop-ware-staff-shift-clocks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: V1 API Partners Staff shift clocks API
  version: v1
  contact:
    name: API Support
    email: support@shop-ware.com
servers:
- url: https://api.shop-ware.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- api_partner_id: []
  api_secret: []
tags:
- name: Staff shift clocks
paths:
  /api/v1/tenants/{tenant_id}/staffs/{staff_id}/time_clocks:
    parameters:
    - name: tenant_id
      in: path
      required: true
      example: '1'
      schema:
        type: integer
    - name: staff_id
      in: path
      required: true
      example: '1'
      schema:
        type: integer
    get:
      summary: Get shift clocks for staff
      tags:
      - Staff shift clocks
      parameters:
      - name: start_after
        in: query
        required: false
        format: date-time
        description: Filter to include records with clocked_in_at after specified date and time in ISO 8601 format
        example: '2022-10-12T12:30:00+00:00'
        schema:
          type: string
      - name: end_before
        in: query
        required: false
        format: date-time
        description: Filter to include records with clocked_out_at before specified date and time in ISO 8601 format
        example: '2022-10-14T12:30:00+00:00'
        schema:
          type: string
      - name: page
        in: query
        required: false
        example: '1'
        schema:
          type: integer
      - name: per_page
        in: query
        required: false
        example: '30'
        schema:
          type: integer
      responses:
        '200':
          description: successful
          content:
            application/json:
              examples:
                when not passing start_after and end_before params:
                  value:
                    results:
                    - staff_id: 1
                      clock_in_at: '2022-10-12T00:00:00-08:00'
                      clock_out_at: '2022-10-12T04:00:00-08:00'
                    - staff_id: 1
                      clock_in_at: '2022-10-12T05:00:00-08:00'
                      clock_out_at: '2022-10-12T09:00:00-08:00'
                    - staff_id: 1
                      clock_in_at: '2022-10-13T00:00:00-08:00'
                      clock_out_at: '2022-10-13T08:00:00-08:00'
                    - staff_id: 1
                      clock_in_at: '2022-10-14T00:00:00-08:00'
                      clock_out_at: '2022-10-14T04:00:00-08:00'
                    - staff_id: 1
                      clock_in_at: '2022-10-14T06:00:00-08:00'
                      clock_out_at: '2022-10-14T10:00:00-08:00'
                    limit: 5
                    limited: false
                    total_count: 5
                    current_page: 1
                    total_pages: 1
                when passing start_after and end_before params:
                  value:
                    results:
                    - staff_id: 1
                      clock_in_at: '2022-10-12T05:00:00-08:00'
                      clock_out_at: '2022-10-12T09:00:00-08:00'
                    - staff_id: 1
                      clock_in_at: '2022-10-13T00:00:00-08:00'
                      clock_out_at: '2022-10-13T08:00:00-08:00'
                    - staff_id: 1
                      clock_in_at: '2022-10-14T00:00:00-08:00'
                      clock_out_at: '2022-10-14T04:00:00-08:00'
                    limit: 3
                    limited: false
                    total_count: 3
                    current_page: 1
                    total_pages: 1
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        staff_id:
                          type: integer
                          description: A foreign key that points to the Staff this Time Clock is belongs to.
                        clock_in_at:
                          type: string
                          format: date-time
                          description: Date and time when staff clocked in.
                        clock_out_at:
                          type: string
                          format: date-time
                          description: Date and time when staff clocked out.
                  limit:
                    type: integer
                  limited:
                    type: boolean
                  total_count:
                    type: integer
                  current_page:
                    type: integer
                  total_pages:
                    type: integer
components:
  securitySchemes:
    api_partner_id:
      type: apiKey
      name: X-Api-Partner-Id
      in: header
    api_secret:
      type: apiKey
      name: X-Api-Secret
      in: header