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": "a21407cb-9843-4b1d-8d0c-c3ea2c1f2681",
"IsValidated": true,
"ErrorMessage": "sample string 3",
"Settings": {
"AdminPINsHashed": [
"sample string 1",
"sample string 2"
],
"ClockingMethod": "sample string 1",
"ClockingCaptureMethod": "sample string 2",
"ClockIncrementIntervalMinutes": 3,
"ClockingIntervalRounding": "sample string 4",
"DeviceRefreshInterval": 5,
"SyncUsers": true,
"RetryTimeoutSeconds": 7,
"DefaultScreenTimeout": 8,
"PhotoMaxQuality": 9,
"PhotoMaxX": 10,
"PayPeriodStart": "2026-03-10T17:29:31.467Z",
"PayPeriodEnd": "2026-03-10T17:29:31.467Z",
"EnableFutureClocking": true
}
}
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>a21407cb-9843-4b1d-8d0c-c3ea2c1f2681</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>
<ClockingIntervalRounding>sample string 4</ClockingIntervalRounding>
<ClockingMethod>sample string 1</ClockingMethod>
<DefaultScreenTimeout>8</DefaultScreenTimeout>
<DeviceRefreshInterval>5</DeviceRefreshInterval>
<EnableFutureClocking>true</EnableFutureClocking>
<PayPeriodEnd>2026-03-10T17:29:31.467661+00:00</PayPeriodEnd>
<PayPeriodStart>2026-03-10T17:29:31.467661+00:00</PayPeriodStart>
<PhotoMaxQuality>9</PhotoMaxQuality>
<PhotoMaxX>10</PhotoMaxX>
<RetryTimeoutSeconds>7</RetryTimeoutSeconds>
<SyncUsers>true</SyncUsers>
</Settings>
</AuthenticationModel.ValidationInfo>