const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
team_id: '<string>',
created_by: '<string>',
scopes: '<string>',
status: 'active',
soft_blocked: true
})
};
fetch('https://api.phaseo.app/v1/management/keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));