Skip to content

Enterprise

Four capabilities aimed at teams who have to answer to someone else: a security reviewer, an auditor, a customer with a contract, or a board.

API keyM2M client
ShapeLong-lived bearer tokenSecret exchanged for short-lived tokens
AccessEverything the account can doOnly the scopes you grant
RevocationDelete the keyRevoke the client, effective immediately
RotationCreate a new key, delete the oldBuilt in, no overlap window
Audit trailRecorded as api_keyRecorded as m2m with the client ID

An API key is the right tool for a quick script or a one-off. An M2M client is the right tool for anything long-lived, anything a third party operates, and anything where “what could this credential do if it leaked?” is a question you would rather have a narrow answer to.

QuestionWhere to look
”Who deleted that monitor?”Audit log, filtered by action and http_method.
”Did we meet 99.9% last quarter?”SLA reports with months=3.
”Can you send us the raw check data?”CSV exports.
”What can this integration actually touch?”The client’s scopes.