Managing Clients: PUT /oauth/clients/{client-id}

Is used to update clients.

Const data = {
    name: 'New Client Name',
    redirect: 'http://example.com/callback'
};

axios.put('/oauth/clients/' + clientId, data)
    .then(response => {
        console.log(response.data);
    })
    .catch (response => {
        // List errors on response...
    });

Managing Clients: PUT /oauth/clients/{client-id} — Structure map

Clickable & Draggable!

Managing Clients: PUT /oauth/clients/{client-id} — Related pages: