OIDC Dynamic Clients- Delete a client

To delete a dynamic client, issue a HTTP DELETE to the client management endpoint.

OAuth dynamic clients can only be deleted by themselves or their owner. For example,

$ curl -k myisam.com/mga/sps/oauth/oauth20/register/mydefinition?
client_id=myClient -H Accept:application/json -H 'Authorization: 
Bearer registrationAccessTokenValue' -X DELETE
HTTP/1.1 204 OK

The default response is a 204. Response attributes can be added in the post-mapping rule. If they are added the status code is 200 and the JSON payload.

Dynamic clients can also be managed from the LMI. See the web services documentation on how to do so. See REST API documentation.

Parent topic: OIDC Dynamic Clients