Permanently delete existing auth client
DELETE/auth/api/login/client/:id
Authorization: apiKey
name: bearertype: apiKeyscheme: bearerbearerFormat: JWTdescription: Access token provided after running the oauth flow (and if needed registering/linking)
Permanently deletes an existing auth client by its id.
Request
Path Parameters
id uuidrequired
The uuid string of an existing auth client to delete
Responses
- 200
- 404
If deletion succeeded, the default response
- application/json
- Schema
- Example (from schema)
Schema
operation stringrequired
A string representation of the operation performed
result stringrequired
Possible values: [success
, failed
]
Default value: success
The result of the operation. Defaults to "success"
time date-timerequired
Default value: 2025-04-26T15:49:53.599Z
The time the operation was performed. Defaults to the current date+time
{
"operation": "self-register",
"result": "success",
"time": "2025-04-26T15:51:43.443Z"
}
If no id was given or no auth client with the given id was found
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X DELETE 'https://ccims.github.io/auth/api/login/client/:id' \
-H 'Accept: application/json'
ResponseClear