Deletes a specific OAuth client registration.
Usage Example
DELETE /api/v1/auth/clients/oauth_client_xyz789
Authorization: Bearer {token}
⚠️ Warning: Deleting a client will:
- Immediately invalidate all access tokens issued to this client
- Terminate all active API sessions using those tokens
- Cannot be undone
Path Parameters
- Type: stringclient
Id requiredThe client ID to delete
Responses
- 204
Client deleted successfully
- application/problem+json
- application/problem+json
- application/problem+json
- application/problem+json
Request Example for delete/api/v1/auth/clients/{clientId}
curl 'https://app.propstreet.com/api/v1/auth/clients/{clientId}' \
--request DELETE \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
No Body