Delete OAuth Client

Delete an OAuth client permanently

Request
Security:
path Parameters
clientId
required
string (OAuth Client ID) non-empty

The unique identifier of the OAuth client

Example: abc123def456
Responses
200

OAuth client deleted successfully

400

Bad request error

401

Unauthorized error

403

Forbidden error

404

Not found error

500

Internal server error

delete/oauth/clients/{clientId}
Request samples
curl -i -X DELETE \
  https://api-prod.surfsight.net/v2/oauth/clients/:clientId \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "message": "Client deleted successfully",
  • "clientId": "abc123def456",
  • "requestId": "06327cae-e075-42ca-b620-c5cfdd3b4e37"
}