Delete a strategy instance
DELETE/login/strategyInstance/:id
Permanently deletes the login strategy instance with the given id.
Request
Path Parameters
id uuidrequired
The uuid string of an existing strategy instance to delete
type stringrequired
The strategy type name of which to search for the instance. Defaults to all types
Responses
- 200
- 404
If successfull, a default response with operation 'delete-strategyInstance'
- 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: 2024-07-03T21:50:49.978Z
The time the operation was performed. Defaults to the current date+time
{
"operation": "self-register",
"result": "success",
"time": "2024-07-03T21:52:34.371Z"
}
If no strategy with the given id (and type) are found
Loading...