POST app/events/{eventId}/scans/create
Creates as new scan entry.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId |
Event Id or Event External Id |
string |
Required |
Body Parameters
AppScan| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Scan primary key. Guid. |
string |
None. |
| AttendeeId |
Scanned by attendee with id. Guid. |
string |
None. |
| ScanId |
The id, external id or reference number of the attendee, company or entity scanned. String. |
string |
None. |
| Type |
The type of entity scanned. Attendee, Company or Other. String. |
string |
None. |
| Status |
Scan status. Active (default), Deleted. |
string |
None. |
| FriendlyName |
The display name of the attendee, company or entity being scanned. String. |
string |
None. |
| Timestamp |
The time at which the scan was made. UTC. |
date |
None. |
| Latitude |
The latitude of the location were the entity was scanned. Double. |
decimal number |
None. |
| Longitude |
The longitude of the location where the entity was scanned. Double. |
decimal number |
None. |
| Note |
A note, message or description associated with the scan. String. |
string |
None. |
| Modified |
Scan last modified. UTC. |
date |
None. |
Request Formats
application/json, text/json
{
"id": "sample string 1",
"attendeeId": "sample string 2",
"scanId": "sample string 3",
"type": "sample string 4",
"status": "sample string 5",
"friendlyName": "sample string 6",
"timestamp": "2025-12-06T06:27:20.6113887+02:00",
"latitude": 1.1,
"longitude": 1.1,
"note": "sample string 7",
"modified": "2025-12-06T06:27:20.6113887+02:00"
}
application/xml, text/xml
<Scan xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIConnectAPI.App.Models"> <AttendeeId>sample string 2</AttendeeId> <FriendlyName>sample string 6</FriendlyName> <Id>sample string 1</Id> <Latitude>1.1</Latitude> <Longitude>1.1</Longitude> <Modified>2025-12-06T06:27:20.6113887+02:00</Modified> <Note>sample string 7</Note> <ScanId>sample string 3</ScanId> <Status>sample string 5</Status> <Timestamp>2025-12-06T06:27:20.6113887+02:00</Timestamp> <Type>sample string 4</Type> </Scan>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.