Greenhouse · Capability

Greenhouse Audit Log API — Events

Greenhouse Audit Log API. Retrieve audit events from the prior 30 days filtered by performer, target, event type, and time range.

Greenhouse Audit Log API — Events is a Naftiko capability published by Greenhouse, one of 11 capabilities the APIs.io network indexes for this provider. It bundles 1 operation.

The capability includes 1 read-only operation. Lead operation: List Audit Events with optional performer, target, and time filters. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Greenhouse, AuditLog, Compliance, and Security.

Run with Naftiko GreenhouseAuditLogComplianceSecurity

MCP Tools

greenhouse-list-audit-events

List Audit Events with optional performer, target, and time filters

read-only idempotent

Capability Spec

audit-log-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Greenhouse Audit Log API — Events
  description: 'Greenhouse Audit Log API. Retrieve audit events from the prior 30 days filtered by performer, target, event type, and time range.'
  tags:
  - Greenhouse
  - AuditLog
  - Compliance
  - Security
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    GREENHOUSE_AUDIT_LOG_TOKEN: GREENHOUSE_AUDIT_LOG_TOKEN
capability:
  consumes:
  - type: http
    namespace: audit-log
    baseUri: https://auditlog.us.greenhouse.io
    description: Audit Log read surface (JWT bearer obtained from Harvest /auth/jwt_access_token).
    resources:
    - name: events
      path: /events
      operations:
      - name: listevents
        method: GET
        description: List Audit Events
        outputRawFormat: json
        outputParameters: [ { name: result, type: object, value: $. } ]
    authentication:
      type: bearer
      value: '{{env.GREENHOUSE_AUDIT_LOG_TOKEN}}'
  exposes:
  - type: mcp
    namespace: audit-log-mcp
    port: 9090
    transport: http
    tools:
    - name: greenhouse-list-audit-events
      description: List Audit Events with optional performer, target, and time filters
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: audit-log.listevents
      outputParameters: [ { type: object, mapping: $. } ]