Managed Signing
List Audit Events

List Audit Events

GET
https://api-prod.useknit.io/api/v1/managed-signing/audit
Scopemanaged-signing:readAuthBearer token

This endpoint retrieves audit events for signing requests. Audit events are fetched from Knit Core but mapped by local request ID.

Query Parameters

ParameterTypeRequiredDescription
requestIdstringNoFilter by local request ID

Request

curl "https://api-prod.useknit.io/api/v1/managed-signing/audit?requestId=<local-request-id>" \
  -H "Authorization: Bearer $KNIT_ACCESS_TOKEN" \
  -H "Accept: application/json"

Response

Response
{
  "statusCode": 200,
  "message": "Audit events retrieved",
  "data": [
    {
      "id": "<audit-event-id>",
      "requestId": "<local-request-id>",
      "action": "SIGNING_REQUEST_CREATED",
      "actor": "api_key",
      "timestamp": "2026-01-20T18:30:40.912Z",
      "metadata": {
        "walletId": "<local-wallet-id>",
        "network": "MATIC_MAINNET",
        "type": "evm_tx"
      }
    },
    {
      "id": "<audit-event-id>",
      "requestId": "<local-request-id>",
      "action": "SIGNING_REQUEST_APPROVED",
      "actor": "api_key",
      "timestamp": "2026-01-20T18:35:22.456Z",
      "metadata": {
        "walletId": "<local-wallet-id>",
        "status": "SIGNED"
      }
    }
  ],
  "success": true
}

Response Fields

FieldTypeDescription
idstringAudit event ID
requestIdstringLocal request ID
actionstringAction performed
actorstringWho performed the action
timestampstringWhen the action occurred
metadataobjectAdditional event metadata

Audit Actions

ActionDescription
SIGNING_REQUEST_CREATEDA signing request was created
SIGNING_REQUEST_APPROVEDA signing request was approved
SIGNING_REQUEST_DENIEDA signing request was denied by policy
SIGNING_REQUEST_FAILEDA signing request failed

Notes

  • Audit events provide a complete history of actions taken on signing requests.
  • Use the requestId query parameter to filter events for a specific signing request.
  • All request IDs in audit events are local IDs, not Knit Core IDs.