The audit logs enable organization admins to efficiently track member activity, providing detailed records of who performed each action, what was done, and when it occurred.
Activity logs in the Developers Console
plan.updated
, customer.created
, invoice.drafted
);Wallet
, Invoice
, Customer
);invoice_id
, customer_id
);front
– triggered from the UIapi
– triggered from the APIsystem
– triggered automatically by the system (e.g., billing)POST
, PUT
, and DELETE
requests are currently recorded in the API logs. All GET
requests are excluded at this time.POST /api/v1/events
or POST /api/v1/batch_events
, are intentionally omitted from logging to ensure performance and scalability.API logs in the Developers Console
POST
, PUT
, DELETE
);RubySDK
, PythonSDK
or PostmanRuntime/7.44.1
); and200
, 400
, 404
)./api/v1/customers
) will return only requests made to that specific endpoint. It will not include requests to extended paths like /api/v1/customers/123
.
Wildcard Path Matching: You can use wildcard patterns (e.g., /api/v1/customers/*
) to match all sub-paths related to a resource. This is useful for retrieving all activity tied to specific objects or nested routes.