使用API​​S

时间:2017-02-19 15:28:21

标签: social-tables

我尝试使用 /4.0/guestlists/ {guestlist_id} / guests / _bulk API函数检入并签出批量访客。但它没有更新状态。除状态外,它正在更新所有内容。任何人都可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

Social Tables API目前不支持使用 /4.0/guestlists/ {guestlist_id} / guests / _bulk 路线更新 checked_in_status

要实现此功能,您需要使用:

<强> /4.0/guestlists/ {guestlist_id} /客人/签

体:

{
    guests: ["guest_id_1", "guest_id_2"],
    event_name: "Some Event Name"       // optional. used by check-in notifictations
}

目前不支持设置为签出或将Guest重置为非签入状态。如果这是所需的功能,请告诉我们,我们可以将其添加到我们的外部API。

如果您有任何其他问题,请随时询问!

<强>已更新

您现在可以为批量登记路线提供签到状态

{
  "guests": [
    "99b4ae20-2779-11e6-b0b7-13c2616041ae",
    "99b4ae21-2779-11e6-b0b7-13c2616041ae"
  ],
  "checked_in": 1,
  "event_name": "Some Event Name"       // optional. used by check-in notifictations
}