Deactivate an OAuth client by Client ID (sets isActive=false)
curl --request DELETE \
--url https://api.provident.ae/v2/oauth2/clients/{clientId} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"clientId": "<string>",
"clientSecret": "<string>",
"name": "<string>",
"redirectUris": [
"<string>"
],
"allowedScopes": [
"<string>"
],
"isActive": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"tokenLifetimeSeconds": 123,
"rateLimitCount": 123,
"rateLimitWindowSeconds": 123,
"ip_restriction": true,
"allowedIps": [
"<string>"
]
}