How to user personal email for host when creating
one_off_event_types with calendly api
const options = { method: 'POST', url: 'https://api.calendly.com/one_off_event_types', headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${accessToken}` }, data: { name: eventData.title, host: "Personal email", // co_hosts: eventData.invitee_email, duration: 30, timezone: 'Africa/Abidjan', date_setting: { type: 'date_range', start_date: moment(eventData.min_start_time).format('YYYY-MM-DD'), end_date: moment(eventData.min_start_time).format('YYYY-MM-DD') }, location: {kind: 'physical', location: 'Main Office', additonal_info: 'string'} }};