curl --request POST \
--url https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"qrCode": "EAFPSNAB2I",
"occurredAt": "2026-06-12T14:33:00Z"
}
'import requests
url = "https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout"
payload = {
"qrCode": "EAFPSNAB2I",
"occurredAt": "2026-06-12T14:33:00Z"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({qrCode: 'EAFPSNAB2I', occurredAt: '2026-06-12T14:33:00Z'})
};
fetch('https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'qrCode' => 'EAFPSNAB2I',
'occurredAt' => '2026-06-12T14:33:00Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout"
payload := strings.NewReader("{\n \"qrCode\": \"EAFPSNAB2I\",\n \"occurredAt\": \"2026-06-12T14:33:00Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"qrCode\": \"EAFPSNAB2I\",\n \"occurredAt\": \"2026-06-12T14:33:00Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"qrCode\": \"EAFPSNAB2I\",\n \"occurredAt\": \"2026-06-12T14:33:00Z\"\n}"
response = http.request(request)
puts response.read_body{
"registrationId": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
"accountId": "9e2b6d4a-6c3a-4a7e-8d24-1c2f8a31a812",
"speakerId": "d812a64f-8865-4289-9024-9a120792c3d8",
"role": "ATTENDEE",
"action": "CHECK_IN",
"recordedAt": "2026-06-12T14:33:00Z"
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}Record a session check-out
Marks the attendee identified by the supplied QR code as checked out of the given session. Accepts the same QR code formats as the check-in endpoint (raw code or Zuddl deep-link URL).
Required API key scopes: WRITE
This API can only be called with an access key that was generated for Backend usage.
curl --request POST \
--url https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"qrCode": "EAFPSNAB2I",
"occurredAt": "2026-06-12T14:33:00Z"
}
'import requests
url = "https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout"
payload = {
"qrCode": "EAFPSNAB2I",
"occurredAt": "2026-06-12T14:33:00Z"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({qrCode: 'EAFPSNAB2I', occurredAt: '2026-06-12T14:33:00Z'})
};
fetch('https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'qrCode' => 'EAFPSNAB2I',
'occurredAt' => '2026-06-12T14:33:00Z'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout"
payload := strings.NewReader("{\n \"qrCode\": \"EAFPSNAB2I\",\n \"occurredAt\": \"2026-06-12T14:33:00Z\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"qrCode\": \"EAFPSNAB2I\",\n \"occurredAt\": \"2026-06-12T14:33:00Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zuddl.com/v1/events/{eventId}/sessions/{sessionId}/attendance/checkout")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"qrCode\": \"EAFPSNAB2I\",\n \"occurredAt\": \"2026-06-12T14:33:00Z\"\n}"
response = http.request(request)
puts response.read_body{
"registrationId": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
"accountId": "9e2b6d4a-6c3a-4a7e-8d24-1c2f8a31a812",
"speakerId": "d812a64f-8865-4289-9024-9a120792c3d8",
"role": "ATTENDEE",
"action": "CHECK_IN",
"recordedAt": "2026-06-12T14:33:00Z"
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"description": "<string>",
"errors": {}
}Authorizations
Provide your API key secret in the Authorization header
Path Parameters
Unique identifier of the event
^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$Unique identifier of the session
Body
QR code identifying the attendee. Accepts either the raw code (e.g. "EAFPSNAB2I") or a Zuddl deep-link URL such as "https://applink.zuddl.com/link/com.zuddl.portal/{eventId}/profile/{qrCode}" — the server extracts the trailing path segment when a URL is supplied.
1"EAFPSNAB2I"
ISO-8601 timestamp of the scan from the partner's device. Defaults to the server time when omitted.
"2026-06-12T14:33:00Z"
Response
Session check-out recorded
Resolved registration id for the attendee. Null when the scanned user is a speaker without a registration record.
"4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d"
Resolved Zuddl account id for the user.
"9e2b6d4a-6c3a-4a7e-8d24-1c2f8a31a812"
Speaker id when the scanned user is a speaker for this event. Null otherwise.
"d812a64f-8865-4289-9024-9a120792c3d8"
Resolved role of the scanned user within the event.
ATTENDEE, ORGANIZER, SPEAKER, SPONSOR, MODERATOR "ATTENDEE"
Action recorded for this scan.
CHECK_IN, CHECK_OUT "CHECK_IN"
Timestamp recorded for the scan (echoes the request occurredAt or the server time used when omitted).
"2026-06-12T14:33:00Z"
Was this page helpful?