Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / IOT / Allegion Credentialing API
Allegion Credentialing API logo

Allegion Credentialing API

★ Only Publicly Available OpenAPI DocumentIOTDevice ManagementapiKey, basic6 EndpointsREST

For Agents

Issue, list, and revoke Schlage mobile credentials and read connected access control devices for an Allegion-managed property.

Use for: I need to issue a Schlage mobile credential to a new tenant, Revoke a mobile credential after a contractor leaves, List all active credentials for a property, Get the details of credential {credentialId}

Not supported: Does not handle door-event telemetry, user identity management, or video surveillance — use for Schlage mobile credential lifecycle and device inventory only.

Jentic publishes the only available OpenAPI specification for Allegion Credentialing API, keeping it validated and agent-ready. The Allegion Schlage Mobile Credentials API issues, lists, and revokes mobile credentials that unlock Schlage access control devices, and lets callers enumerate the devices in their fleet. Authentication combines a subscription key in the alle-subscription-key header with HTTP basic auth, reflecting Allegion's enterprise integration model. The API is small and focused on the credential lifecycle rather than user management or door-event reporting.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Allegion Credentialing API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Allegion Credentialing API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Allegion Credentialing API.

Issue a mobile credential bound to a recipient and access scope

List active credentials currently in circulation

Look up a single credential by its credentialId

Revoke a mobile credential immediately via DELETE

Enumerate Schlage devices registered to the customer account

Pull metadata for a specific device by deviceId

Use Cases

Patterns agents use Allegion Credentialing API for, with concrete tasks.

★ Tenant move-in credential issuance

Property managers issue a mobile credential the moment a tenant signs a lease, replacing physical key handover. The agent calls POST /credentials with the recipient and the scoped device IDs, and the credential is provisioned for the tenant's phone. Revocation at move-out is a single DELETE call against the credentialId.

Call POST /credentials with the new tenant's email and the device IDs for unit 4B and the lobby, then store the returned credentialId in the property management record.

Contractor access lifecycle

Service contractors get short-lived mobile credentials that are revoked as soon as the work order closes. The Credentialing API supports immediate revocation via DELETE /credentials/{credentialId}, so the agent loop is tightly bound to the work-order completion event. This avoids stale access that lingers after the job ends.

When the work-order webhook fires for completion, call DELETE /credentials/{credentialId} for the contractor's credential to revoke access immediately.

Device fleet inventory

Operations teams audit their Schlage device fleet by listing devices and pulling per-device metadata. GET /devices returns the registered fleet and GET /devices/{deviceId} returns details for a chosen lock. This data feeds asset management systems and helps reconcile physical installs with the cloud-registered inventory.

Call GET /devices to list every Schlage lock on the account and write the deviceId, name, and location into a CMMS asset record.

AI agent property access management

An AI agent embedded in a property management workflow can issue credentials, look them up, and revoke them on schedule, all through Jentic. The agent searches by intent, loads the schema, and executes — credentials and the alle-subscription-key are kept in the Jentic vault and never enter the prompt.

Use Jentic to search 'issue a Schlage mobile credential', execute POST /credentials with the lease record, and store the result.

Key Endpoints

6 endpoints — jentic publishes the only available openapi specification for allegion credentialing api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/credentials

Issue a new mobile credential

GET

/credentials

List active credentials

GET

/credentials/{credentialId}

Retrieve a credential by ID

DELETE

/credentials/{credentialId}

Revoke a credential

GET

/devices

List registered Schlage devices

GET

/devices/{deviceId}

Get device details

POST

/credentials

Issue a new mobile credential

GET

/credentials

List active credentials

GET

/credentials/{credentialId}

Retrieve a credential by ID

DELETE

/credentials/{credentialId}

Revoke a credential

GET

/devices

List registered Schlage devices

GET

/devices/{deviceId}

Get device details

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

The alle-subscription-key and basic auth credentials are stored encrypted in the Jentic vault. Agents receive scoped execution tokens — the raw subscription key and password never enter the prompt context.

Intent-based discovery

Intent-based discovery

Agents search 'issue a Schlage mobile credential' and Jentic returns POST /credentials with its input schema, so the agent fills the recipient and device scope without reading vendor docs.

Time to first call

Time to first call

Direct Allegion integration: 2-3 days to handle dual auth, key rotation, and credential lifecycle webhooks. Through Jentic: under 1 hour — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Samsara

→

Samsara handles fleet and facility telemetry alongside physical access

Use Samsara when the same workflow needs vehicle or sensor telemetry in addition to Schlage credentialing

Complementary

BambooHR

→

Tie credential issuance and revocation to HR onboarding and offboarding events

Use BambooHR when the trigger for issuing or revoking a credential is an employee status change

Complementary

HubSpot Tickets

→

Track contractor access requests and revocations as support tickets

Use HubSpot Tickets when access requests are funnelled through a customer or facilities support queue

FAQs

Specific to using Allegion Credentialing API through Jentic.

Why is there no official OpenAPI spec for Allegion Credentialing API?

Allegion does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Allegion Credentialing API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the Allegion Credentialing API use?

Calls require both an alle-subscription-key header (an apiKey scheme) and HTTP basic auth credentials. Through Jentic, both values are stored in the encrypted vault and injected at execution time so they never enter agent prompts.

Can I revoke a Schlage mobile credential immediately via the API?

Yes. DELETE /credentials/{credentialId} revokes a mobile credential. Pair this with a webhook from the calling system (e.g. lease termination or work-order closure) to make revocation event-driven.

How do I issue a Schlage credential via the Allegion API through Jentic?

Run pip install jentic, search for 'issue a Schlage mobile credential', load the input schema for POST /credentials, and execute with the recipient and scoped device IDs. Jentic returns the credentialId in the response.

Can I list every Schlage device on my account via this API?

Yes. GET /devices returns the registered device list, and GET /devices/{deviceId} returns details for a single lock. Use these to build or sync an asset inventory.

Does the Allegion Credentialing API report door-open events?

No. This API is scoped to credential lifecycle and device metadata. Door-event telemetry is published through other Allegion product surfaces and is not part of this spec.

GET STARTED

Start building with Allegion Credentialing API

Explore with Jentic
View OpenAPI Document