Eventmaker for developers
PlatformHelp Eventmaker
  • Welcome to Eventmaker for developers
  • Rest APIs
    • Get your API access token
    • Eventmaker Rest API
      • Events
      • Guests
      • Guest Categories
      • Check-in points
      • Check-ins
      • Signatures
    • Eventmaker Leads API
  • Configuration
    • Creating an OAuth App
      • Register your application on Zoho
      • Enregistrer votre application sur zoho FR
    • Connect Eventmaker to hundreds of other apps with Zapier
  • Liquid Documentation
    • Campaign email
    • Confirmation email
    • Confirmation Page
    • Direct message
    • Document template
    • Registration form
Powered by GitBook
On this page
  • Check-in points
  • Retrieve the list of Check-in points
  • Get information about a given check-in point
  • Create a new check-in point
  • Update a check-in point

Was this helpful?

  1. Rest APIs
  2. Eventmaker Rest API

Check-in points

PreviousGuest CategoriesNextCheck-ins

Last updated 4 years ago

Was this helpful?

Check-in points

A check-in point is a place where you will check-in . It can be physical (Entrance, Exit, VIP Room) or represent an activity (Workshop, Conference, ...).

Retrieve the list of Check-in points

JSON

Request

GET /api/v1/events/{event_id}/accesspoints.json?auth_token=YOUR_API_TOKEN

Response

// 200 OK
[
  {
    // the first check-in point
  },
  {
    // the second check-in point
  }
]

XML

Request

GET /api/v1/events/{event_id}/accesspoints.xml?auth_token=YOUR_API_TOKEN

Response

<!-- 200 OK -->
<?xml version="1.0" encoding="UTF-8"?>
<accesspoints type="array">
  <accesspoint>
    <!-- [...] -->
  </accesspoint>
  <accesspoint>
    <!-- [...] -->
  </accesspoint>
</accesspoints>

Get information about a given check-in point

JSON

Request

GET /api/v1/events/{event_id}/accesspoints/{id}.json?auth_token=YOUR_API_TOKEN

Response

// 200 OK
{
  "_id": "{id}",
  "name": "VIP Room",
  "event_id": "{event_id}",
  "created_at": "2012-11-28T10:09:35+01:00",
  "updated_at": "2012-11-28T10:09:35+01:00",
  "guest_category_accesspoints": [
    {
      "access_once": false,
      "guest_category_id": "{vip_guest_category_id}"
    }
  ]
}

XML

Request

GET /api/v1/events/{event_id}/accesspoints/{id}.xml?auth_token=YOUR_API_TOKEN

Response

<!-- 200 OK -->
<accesspoint>
  <_id>{id}</_id>
  <name>VIP Room</name>
  <event-id>{event_id}</event-id>
  <created-at type="datetime">2012-11-28T09:09:35Z</created-at>
  <updated-at type="datetime">2012-11-28T09:09:35Z</updated-at>
  <guest-category-accesspoints type="array">
    <guest-category-accesspoint>
      <access-once type="boolean">false</access-once>
      <accesspoint-id>{id}</accesspoint-id>
      <guest-category-id>{vip_guest_category_id}</guest-category-id>
    </guest-category-accesspoint>
  </guest-category-accesspoints>
</accesspoint>

Create a new check-in point

JSON

Request

POST /api/v1/{event_id}/accesspoints.json?auth_token=YOUR_API_TOKEN
Content-Type: application/json; charset=utf-8
{
  // Fields of the check-in point to create (see GET request for a complete list)
}

Response

// 201 Created
{
   // Your newly created guest category as a JSON object
}

XML

Request

POST /api/v1/{event_id}/accesspoints.xml?auth_token=YOUR_API_TOKEN
Content-Type: application/xml; charset=utf-8
<accesspoint>
  <!-- Fields of the check-in point to create (see GET request for a complete list) -->
</accesspoint>

Response

<!-- 201 Created -->
<?xml version="1.0" encoding="UTF-8"?>
<accesspoint>
  <!-- Your newly created guest category as a JSON object -->
</accesspoint>

Update a check-in point

JSON

Request

PUT /api/v1/events/{event_id}/accesspoints/{id}.json?auth_token=YOUR_API_TOKEN
Content-Type: application/json; charset=utf-8
{
  // Fields of the check-in point to update (see GET request for a complete list)
}

Response

// 204 No Content

XML

Request

PUT /api/v1/events/{event_id}/accesspoints/{id}.xml?auth_token=YOUR_API_TOKEN
Content-Type: application/xml; charset=utf-8
<guest-category>
  <!-- Fields of the check-in point to update (see GET request for a complete list) -->
</guest-category>

Response

<!-- 204 No Content -->
guests