GET api/RapidClocking/Auth/ValidateDeviceCode?activationCode={activationCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| activationCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ValidationInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| SessionKey | globally unique identifier |
None. |
|
| IsValidated | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| Settings | RapidClockingSettings |
None. |
Response Formats
application/json, text/json
Sample:
{
"SessionKey": "9bb41284-2ca1-4c42-9eeb-af818c4d3356",
"IsValidated": true,
"ErrorMessage": "sample string 3",
"Settings": {
"AdminPINsHashed": [
"sample string 1",
"sample string 2"
],
"ClockingMethod": "sample string 1",
"ClockingCaptureMethod": "sample string 2",
"ClockIncrementIntervalMinutes": 3,
"DeviceRefreshInterval": 4,
"SyncUsers": true,
"RetryTimeoutSeconds": 6,
"DefaultScreenTimeout": 7,
"PhotoMaxQuality": 8,
"PhotoMaxX": 9,
"PayPeriodStart": "2025-11-04T20:47:25.658Z",
"PayPeriodEnd": "2025-11-04T20:47:25.658Z"
}
}
application/xml, text/xml
Sample:
<AuthenticationModel.ValidationInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.RapidClocking.Models">
<ErrorMessage>sample string 3</ErrorMessage>
<IsValidated>true</IsValidated>
<SessionKey>9bb41284-2ca1-4c42-9eeb-af818c4d3356</SessionKey>
<Settings>
<AdminPINsHashed xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</AdminPINsHashed>
<ClockIncrementIntervalMinutes>3</ClockIncrementIntervalMinutes>
<ClockingCaptureMethod>sample string 2</ClockingCaptureMethod>
<ClockingMethod>sample string 1</ClockingMethod>
<DefaultScreenTimeout>7</DefaultScreenTimeout>
<DeviceRefreshInterval>4</DeviceRefreshInterval>
<PayPeriodEnd>2025-11-04T20:47:25.6588116+00:00</PayPeriodEnd>
<PayPeriodStart>2025-11-04T20:47:25.6588116+00:00</PayPeriodStart>
<PhotoMaxQuality>8</PhotoMaxQuality>
<PhotoMaxX>9</PhotoMaxX>
<RetryTimeoutSeconds>6</RetryTimeoutSeconds>
<SyncUsers>true</SyncUsers>
</Settings>
</AuthenticationModel.ValidationInfo>