Managing Clients: POST /oauth/clients

Is used to create new clients.

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

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

Managing Clients: POST /oauth/clients — Structure map

Clickable & Draggable!

Managing Clients: POST /oauth/clients — Related pages: