get https://api.duda.co/api/sites/multiscreen/
Get the details of a site by name.
Sites with a status of 'In Planning' are not returned from this endpoint.
Responses
Get the details of a site by name.
Sites with a status of 'In Planning' are not returned from this endpoint.
xxxxxxxxxx
12const { Duda } = require('@dudadev/partner-api');
​
const duda = new Duda({
user: 'api-user',
pass: 'api-pass'
});
​
duda.sites.get({
site_name: 'q4fwbg'
})
.then((site) => console.log(site))
.catch((err) => console.error(err))