OAuth applications
Delete an OAuth application
Authorization
ApiKey AuthorizationBearer <token>
Bearer API key in the form sk_live_…, sk_test_…, or pk_live_…. Keys are issued from the Consistly dashboard and carry product-prefixed scopes.
In: header
Path Parameters
id*string
Response Body
application/json
application/json
curl -X DELETE "https://example.com/oauth_applications/oauth_app_abc..."{ "id": "string", "deleted": true}{ "error": {}}Update an OAuth application PATCH
Previous Page
Exchange client credentials for an access token POST
RFC 6749 §4.4 client_credentials grant. Accepts the client id and secret either in the request body or via HTTP Basic auth, plus an optional space-separated `scope` parameter. The minted token is a bearer string prefixed with `oat_` and expires in one hour. Refresh tokens are not issued for this grant — request a new one when the previous expires.