Laurel Working Timekeepers API

The Working Timekeepers API from Laurel — 3 operation(s) for working timekeepers.

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/laurel-working-timekeepers-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 email required.

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

OpenAPI Specification

laurel-working-timekeepers-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Identity Service Ably Working Timekeepers API
  description: ''
  version: '1'
  contact: {}
servers: []
security:
- ApiBearerAuth: []
tags:
- name: Working Timekeepers
paths:
  /api/v1/customers/{customerId}/working-timekeepers/sync:
    post:
      operationId: WorkingTimekeepersController_sync_v1
      parameters:
      - name: customerId
        required: true
        in: path
        schema:
          format: objectid
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SyncCustomerWorkingTimekeepersBatchDto'
      responses:
        '202':
          description: ''
      summary: Syncs working timekeepers for a customer's initiatives
      tags:
      - Working Timekeepers
  /api/v1/customers/{customerId}/working-timekeepers/my-restrictions:
    get:
      operationId: WorkingTimekeeperController_getMyRestrictions_v1
      parameters:
      - name: customerId
        required: true
        in: path
        description: customer id
        schema:
          format: objectid
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Working Timekeepers
  /api/v1/customers/{customerId}/working-timekeepers/initiatives/{initiativeId}:
    get:
      operationId: WorkingTimekeeperController_getForInitiative_v1
      parameters:
      - name: customerId
        required: true
        in: path
        description: customer id
        schema:
          format: objectid
          type: string
      - name: initiativeId
        required: true
        in: path
        description: Initiative's id
        schema:
          format: objectid
          type: string
      - name: page
        required: false
        in: query
        schema:
          minimum: 1
          format: int64
          type: number
      - name: pageSize
        required: false
        in: query
        schema:
          minimum: 1
          maximum: 150
          format: int64
          type: number
      - name: search
        required: false
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      tags:
      - Working Timekeepers
components:
  schemas:
    SyncCustomerWorkingTimekeepersItemDto:
      type: object
      properties:
        initiativeExternalId:
          type: string
          description: External ID of the initiative
        type:
          type: string
          description: Access type for the initiative (allow/deny)
          enum:
          - allow
          - deny
        timekeeperExternalIds:
          description: External IDs of the timekeepers to sync
          maxItems: 2500
          type: array
          items:
            type: string
      required:
      - initiativeExternalId
      - timekeeperExternalIds
    SyncCustomerWorkingTimekeepersBatchDto:
      type: object
      properties:
        initiatives:
          description: List of initiatives to sync working timekeepers for
          minItems: 1
          maxItems: 500
          type: array
          items:
            $ref: '#/components/schemas/SyncCustomerWorkingTimekeepersItemDto'
      required:
      - initiatives
  securitySchemes:
    ApiBearerAuth:
      scheme: bearer
      bearerFormat: JWT
      description: Enter access token
      type: http
externalDocs:
  description: Laurel API Documentation
  url: https://developer.laurel.ai/