W3lcome API
  • Introduction
  • FAQ
  • Authentication
  • Changelog
  • Host
    • The Host Object
    • Retrieve a Host
    • Retrieve a List of Hosts
    • Insert a Host
    • Update a Host
    • Delete a Host
  • Visit
    • The Visit Object
    • Retrieve a Visit
    • Retrieve a List of Visits
    • Change Visit Status
    • Check-out a Visit
    • Check-in with Invitee Id
    • Check-out with Invitee Id
    • Delete a Visit
  • Blocked list
    • The Blocked List Object
    • Retrieve a Person on the Blocked List
    • Retrieve a List of People from the Blocked List
    • Insert a Person on the Blocked List
    • Update a Person on the Blocked List
    • Delete a Person from the Blocked List
  • Invitee
    • The Invitee Object
    • Retrieve an Invitee
    • Retrieve a List of Invitees
    • Insert an Invitee
    • Update an Invitee
    • Delete an Invitee
  • Delivery
    • The Delivery Object
  • Meeting
    • The Meeting Object
  • Notification
    • The Notification Object
  • Webhook
    • Webhook Endpoints
  • Company
    • The Company Object
    • Retrieve Company Information
    • Company Fields
  • Integration
    • W-Access
    • SBT
    • SBT QRCodes
    • Workplace by Facebook
Powered by GitBook
On this page

Was this helpful?

  1. Visit

Check-out with Invitee Id

Check-out with invitee id

POST https://api.w3lcome.com/v1/visit/inviteeCheckout/:inviteeId

This endpoint allows you to check-out a visit with an invitee id.

Path Parameters

Name
Type
Description

inviteeId

string

ID of the invitee

Headers

Name
Type
Description

Content-Type

string

application/JSON

Authentication

string

Basic token

{
    "type": "visit",
    "id": "E9053F0C-C127-4B36-9214-295B6862287E",
    "checkinAt": "2019-09-05T20:02:24-03:00",
    "checkoutAt": "2019-09-05T20:15:51-03:00",
    "isInsideCompany": false,
    "name": "Alisson Enz Rossi",
    "host": {
        "type": "host",
        "id": "b98ff2895de825dec050af67d57a23e1",
        "name": "Gabriel Gratival",
        "email": "gabriel@w3lcome.com",
        "isActive": true
    },
    "phone": "(43) 9 9982-0420",
    "company": "W3lcome",
    "customFields": []
}
{
    "type": "DID_NOT_CHECKIN"
}

PreviousCheck-in with Invitee IdNextDelete a Visit

Last updated 4 years ago

Was this helpful?