我在 calendly webhook 中遇到日程安排时没有得到
i don't get when meeting schedule in calendly webhook
我在我的 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
值。
我在我的 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
值。