我不明白日历网络钩子中的会议时间表



我在我的webhook中收到了这个请求。没有哪个字段喜欢哪个时间的会议日程。(我更改了一些私人数据(

{
created_at: '2022-03-28T11:51:16.000000Z',
created_by: 'https://api.calendly.com/users/AAAAAAAAAAA',
event: 'invitee.created',
payload: {
cancel_url: 'https://calendly.com/cancellations/VVVVVVVV',
created_at: '2022-03-28T11:51:16.669509Z',
email: 'test@gmail.com',
event: 'https://api.calendly.com/scheduled_events/AAAAAAA',
first_name: null,
last_name: null,
name: 'test@gmail.com',
new_invitee: null,
old_invitee: null,
payment: null,
questions_and_answers: [],
reschedule_url: 'https://calendly.com/reschedulings/BBBBBBBBB',
rescheduled: false,
status: 'active',
text_reminder_number: null,
timezone: 'Asia/Calcutta',
tracking: {
utm_campaign: null,
utm_source: null,
utm_medium: null,
utm_content: null,
utm_term: null,
salesforce_uuid: null
},
updated_at: '2022-03-28T11:51:16.669509Z',
uri: 'https://api.calendly.com/scheduled_events/BBBBB/invitees/AAAAAA'
}

要检索事件的开始时间,您需要向webhook负载中包含的事件uri发送一个请求(https://api.calendly.com/scheduled_events/AAAAAAA)。对此请求的响应将包括一个start_time值。

最新更新