For the complete documentation index, see llms.txt. This page is also available as Markdown.

Derived Punches API

Retrieve derived attendance punches for stealth-mode users and groups.

Use the Derived Punches API to retrieve calculated punch records for a date.

Overview

  • Base URL: https://api.in.we360.ai

  • Path: /query/external/stealth/derived_punches

  • Method: POST

  • Response type: application/json

Authentication

Send this header with every request:

  • Authorization: Bearer ${access_token}

Get the token from OAuth for Direct API Access.

Request body

{
  "date": "2026-08-20",
  "buffer_seconds": 30,
  "user_id": "",
  "group_id": "",
  "page": 1,
  "limit": 100
}

Parameters

Parameter
Required
Description

date

Yes

Date to retrieve, in YYYY-MM-DD format.

buffer_seconds

No

Additional buffer in seconds. Default is 30; maximum is 3600.

user_id

No

Comma-separated user UUIDs to filter. Leave empty for all users.

group_id

No

Comma-separated group UUIDs to filter. Leave empty for all groups.

page

No

Page number. Default is 1.

limit

No

Records per page. Default is 100; maximum is 1000.

cURL example

Response format

Request guidance

  • Provide comma-separated UUIDs in user_id or group_id to narrow results.

  • Increase page to retrieve subsequent results.

Last updated

Was this helpful?